forked from Mercer01/hackTheGame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (68 loc) · 2.2 KB
/
index.html
File metadata and controls
78 lines (68 loc) · 2.2 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<HTML>
<head>
<title>Hack Pompy Sim 2018</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id = "img">
<img
id = "player"
src = "img/player-1.png"
width = "" height = "">
<img
id = "map"
src = "img/map.png"
width = "54" height = "42">
<img
id = "logo"
src = "img/logo_min.png"
width = "702" height = "642">
<img
id = "player1"
src = "img/player-1.png"
width = "54" height = "42">
<img
id = "mob"
src = "img/mob.png"
width = "54" height = "42">
<img
id = "player2"
src = "img/player-2.png"
width = "54" height = "42">
<img
id = "player-coffee-1"
src = "img/player-coffee-1.png"
width = "54" height = "42">
<img
id = "player-coffee-2"
src = "img/player-coffee-2.png"
width = "54" height = "42">
<img
id = "player-donut-1"
src = "img/player-donut-1.png"
width = "54" height = "42">
<img
id = "player-donut-2"
src = "img/player-donut-2.png"
width = "54" height = "42">
</div>
<canvas id = "canvas"> </canvas>
</body>
<script src="lib.js"></script>
<script src="particle.js"></script>
<script src="speechBubble.js"></script>
<script src="animation.js"></script>
<script src="player.js"></script>
<script src="astar.js"></script>
<script src = "pathing_graph.js"></script>
<script src="mob.js"></script>
<script src = "map.js"></script>
<script src = "mainMap.js"></script>
<script src = "screens/playScreen.js"></script>
<script src = "screens/mainMenuScreen.js"></script>
<script src = "screens/registrationScreen.js"></script>
<script src = "screens/presentationScreen.js"></script>
<script src = "screens/developmentScreen.js"></script>
<script src = "main.js"></script>
<script src = "ui.js"></script>
</HTML>