-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (54 loc) · 2.33 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
47
48
49
50
51
52
53
54
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>SPACE ODYSSEY</title>
<link rel="stylesheet" href="css/game.css">
</head>
<body>
<canvas id="bgCanvas"></canvas>
<canvas id="canvas"></canvas>
<div id="menu">
<h1 class="glitch" data-text="SPACE ODYSSEY">SPACE ODYSSEY</h1>
<button id="play">PLAY</button>
</div>
<div id="round"></div>
<div id="gameover">
<h1 class="glitch" data-text="Game Over!">Game Over!</h1>
<h3 style="margin-bottom:0">Rounds: <span id="nrounds"></span></h3>
<h3 style="margin-top:0">Score: <span id="nscore"></span></h3>
<button id="replay">REPLAY</button>
</div>
<div id="credits">
<p><a href="https://davidjotta.me" target="_blank">David Juan Ahullana</a> & Jose Wang Wu</p>
</div>
</body>
<script src="js/lib/jquery-3.1.1.min.js"></script>
<script src="js/util/util.js"></script>
<script src="js/util/input.js"></script>
<script src="js/class/core/sprite.js"></script>
<script src="js/class/core/animation.js"></script>
<script src="js/class/core/audio.js"></script>
<script src="js/class/gui/hud.js"></script>
<script src="js/class/gui/menu.js"></script>
<script src="js/class/item.js"></script>
<script src="js/class/stars.js"></script>
<script src="js/class/bullet.js"></script>
<script src="js/class/player.js"></script>
<script src="js/class/enemy.js"></script>
<script src="js/class/asteroid.js"></script>
<script src="js/class/weapon.js"></script>
<script src="js/class/bullet/friendly.js"></script>
<script src="js/class/bullet/simple.js"></script>
<script src="js/class/bullet/radial.js"></script>
<script src="js/class/bullet/follower.js"></script>
<script src="js/class/bullet/laser.js"></script>
<script src="js/class/enemy/follower.js"></script>
<script src="js/class/enemy/parabolic.js"></script>
<script src="js/class/enemy/wave.js"></script>
<script src="js/class/enemy/laser.js"></script>
<script src="js/class/enemy/boss.js"></script>
<script src="js/class/weapon/basic.js"></script>
<script src="js/config.js"></script>
<script src="js/index.js"></script>
</html>