-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (33 loc) · 940 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
35
<html>
<head>
<title>StarWar</title>
<style>
canvas {
position: absolute;
width: 100%;
height: 100%;
margin: 0px 0px 0px 0px;
object-fit: contain;
}
body {
position: absolute;
width: 100%;
height: 100%;
margin: 0px 0px 0px 0px;
object-fit: contain;
}
</style>
</head>
<body>
<script name="PixiJS" src="./include/pixi.js"></script>
<script name="Global">
var DEBUG=false;
</script>
<script name="Scene" src="./src/scene.js"></script>
<script name="Hitbox" src="./src/hitbox.js"></script>
<script name="Bullet" src="./src/bullet.js"></script>
<script name="Enemy" src="./src/enemy.js"></script>
<script name="Player" src="./src/player.js"></script>
<script name="Main" type="module" src="./src/game.js"></script>
</body>
</html>