-
Notifications
You must be signed in to change notification settings - Fork 0
/
play.html
26 lines (22 loc) · 1.06 KB
/
play.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sokoban Worlds</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="assets/player/head.png">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.4/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.4/addons/p5.sound.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/objetos/[email protected]/p5.quadrille.min.js"></script>
<!-- Retrieve the variables used across the whole project -->
<script src="globalVariables.js"></script>
<!-- Import the distribution of functions -->
<script src="functions/objects.js"></script>
<script src="functions/movement.js"></script>
<script src="functions/functions.js"></script>
<script src="functions/mapRenders.js"></script>
<!-- Retrieve the level processor -->
<script src="functions/levelHandler.js"></script>
</head>
</html>