-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (38 loc) · 1.6 KB
/
index.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="image/pacman_icon.png">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<title>PACMAN</title>
</head>
<body>
<canvas id="main-canvas">
Sorry Your Browser Doesn't support canvas.
</canvas>
<script src="script/Utilities/ImageConstants.js"></script>
<script src="script/Utilities/GameMaps.js"></script>
<script src="script/Utilities/constants.js"></script>
<script src="script/Utilities/GameMode.js"></script>
<script src="script/Utilities/Utils.js"></script>
<script src="script/Utilities/graph.js"></script>
<script src="script/Utilities/astar.js"></script>
<script src="script/Utilities/AudioLoader.js"></script>
<script src="script/Components/GameMap.js"></script>
<script src="script/Utilities/Sprite.js"></script>
<script src="script/Characters/GameActors.js"></script>
<script src="script/Characters/Pacman.js"></script>
<script src="script/Characters/Ghosts/Ghosts.js"></script>
<script src="script/Characters/Ghosts/Blinky.js"></script>
<script src="script/Characters/Ghosts/Pinky.js"></script>
<script src="script/Characters/Ghosts/Inky.js"></script>
<script src="script/Characters/Ghosts/Clyde.js"></script>
<script src="script/Components/Game.js"></script>
<script src="script/GameMenu.js"></script>
<script src="script/GameWorld.js"></script>
<script src="script/script.js"></script>
</body>
</html>