-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (29 loc) · 897 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
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Phaser - Boilerplate</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- phaser -->
<script src="js/phaser.js"></script>
<!-- Game -->
<script src="js/Megaman.js"></script>
<!-- states -->
<script src="js/states/Splash.js"></script>
<script src="js/states/Preload.js"></script>
<script src="js/states/Title.js"></script>
<script src="js/states/Game.js"></script>
<script src="js/states/GameOver.js"></script>
<script src="js/states/Credit.js"></script>
<script src="js/states/Controls.js"></script>
<!-- classes -->
<script src='js/classes/Boss.js'></script>
<script src="js/classes/Player.js"></script>
<script src="js/classes/Enemy.js"></script>
<script src="js/classes/Boss.js"></script>
<!-- game launcher -->
<script src="app.js"></script>
</body>
</html>