-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (24 loc) · 893 Bytes
/
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Phaser Invader</title>
<script src="lib/phaser.min.js"></script>
<script src="src/display/FixedSprite.js"></script>
<script src="src/agents/Alien.js"></script>
<script src="src/agents/AlienGroup.js"></script>
<script src="src/agents/AlienRow.js"></script>
<script src="src/agents/Projectile.js"></script>
<script src="src/agents/Player.js"></script>
<script src="src/states/Boot.js"></script>
<script src="src/states/Preloader.js"></script>
<script src="src/states/MainMenu.js"></script>
<script src="src/states/Game.js"></script>
<script src="src/phaser.invaders.js"></script>
</head>
<body>
<script type="text/javascript">
window.onload = PhaserInvaders.main;
</script>
</body>
</html>