-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (27 loc) · 881 Bytes
/
index.html
File metadata and controls
33 lines (27 loc) · 881 Bytes
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
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Snake</title>
<link rel="stylesheet" type="text/css" href="css/snake.css">
</head>
<body>
<p>
<canvas id="canvas"></canvas>
</p>
<script src="app/gameobjects/Snake.js"></script>
<script src="app/gameobjects/Apple.js"></script>
<script src="app/gameobjects/Counter.js"></script>
<script src="app/gameobjects/AppleDispatcher.js"></script>
<script src="app/states/GameState.js"></script>
<script src="app/states/GameOverState.js"></script>
<script src="app/states/MainMenuState.js"></script>
<script src="app/ImageLoader.js"></script>
<script src="app/Interpolation.js"></script>
<script src="app/Point.js"></script>
<script src="app/SaveGame.js"></script>
<script src="app/SoundPlayer.js"></script>
<script src="app/SnakeGame.js"></script>
<script src="app/Starter.js"></script>
</body>
</html>