-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 801 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bullet Time</title>
<script src="./lib/phaser.js"></script>
<script src="./src/Scenes/SingleBullet.js"></script>
<script src="./src/Scenes/ArrayBullet.js"></script>
<script src="./src/Scenes/FixedArrayBullet.js"></script>
<script src="./src/Scenes/GroupBullet.js"></script>
<script src="./src/Sprites/Player.js"></script>
<script src="./src/Sprites/Bullet.js"></script>
<script src="./src/Scenes/ClassBullet.js"></script>
<script src="./src/Scenes/ArrayBoom.js"></script>
<script src="./src/main.js"></script>
</head>
<body>
<div id="phaser-game"></div>
<span id="description"></span>
</body>
</html>