forked from brunops/zombies-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (34 loc) · 1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Kill the zombies!</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="game-wrapper">
<canvas id="game-canvas" width="512" height="480"></canvas>
<div id="game-overlay">
<div id="game-over">
<p>GAME OVER</p>
<p>Zombies ate your brainz!</p>
<button id="play-again">Play Again</button>
</div>
<div id="game-paused">
<p>GAME PAUSED</p>
<p>So... are you too afraid to continue?</p>
<button id="return-play">Return to Play</button>
</div>
</div>
</div>
<script src="js/ObjectPoolMaker.js"></script>
<script src="js/Entity.js"></script>
<script src="js/Player.js"></script>
<script src="js/Projectile.js"></script>
<script src="js/Explosion.js"></script>
<script src="js/Zombie.js"></script>
<script src="js/FlashMessage.js"></script>
<script src="js/Game.js"></script>
<script src="js/main.js"></script>
</body>
</html>