forked from phaserjs/template-webpack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
26 lines (26 loc) · 821 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body {
margin: 0;
}
</style>
</head>
<body>
<div id="game"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/3.22.0/phaser.min.js"></script>
<script src="./src/Sprites/Enemy.js"></script>
<script src="./src/Sprites/Player.js"></script>
<script src="./src/Groups/Bullets.js"></script>
<script src="./src/Groups/Coins.js"></script>
<script src="./src/Groups/Enemies.js"></script>
<script src="./src/Scenes/Boot.js"></script>
<script src="./src/Scenes/Game.js"></script>
<script src="./src/Scenes/Title.js"></script>
<script src="./src/Scenes/UI.js"></script>
<script src="./src/Scenes/Win.js"></script>
<script src="./src/index.js"></script>
</body>
</html>