-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (39 loc) · 1.56 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
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title>Zombie Survival</title>
<link href="css/zombie-survival.css" rel="stylesheet" type="text/css"/>
<script src="js/util.js"></script>
<script src="config.js"></script>
<script src="js/resource_loader.js"></script>
<script src="js/classes/Point.js"></script>
<script src="js/classes/GameMap.js"></script>
<script src="js/classes/Trouble.js"></script>
<script src="js/classes/game-objects/GameObject.js"></script>
<script src="js/classes/game-objects/Player.js"></script>
<script src="js/classes/game-objects/Mob.js"></script>
<script src="js/classes/game-objects/Bullet.js"></script>
<script src="js/functionals/mobs.js"></script>
<script src="js/functionals/stinks.js"></script>
<script src="js/functionals/collision.js"></script>
<script src="js/functionals/directions.js"></script>
<script src="js/functionals/draw.js"></script>
<script src="js/functionals/events.js"></script>
<script src="js/functionals/game.js"></script>
<script src="js/functionals/movement.js"></script>
<script src="js/functionals/troubles.js"></script>
<script src="js/functionals/scores.js"></script>
<script src="js/functionals/canvas.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<canvas id="surface"></canvas>
<script type="text/javascript">
init();
setInterval("drawGame()", 50);
setInterval("runGame()", 50);
</script>
</body>
</html>