forked from rezoner/unfinished-asteroids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (28 loc) · 1.08 KB
/
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
36
37
38
39
40
41
<!doctype html>
<html>
<head>
<title>Your game name</title>
<meta charset="utf-8">
<meta property="og:title" content="Your game name">
<meta property="og:image" content="thumbnail.png">
<meta property="og:description" content="description of your game">
<meta name="description" content="description of your game">
<style>
@import url("main.css");
</style>
</head>
<body>
<script src="script/Utils.js"></script>
<script src="script/Lib/CanvasQuery.js"></script>
<script src="script/Lib/Playground.js"></script>
<script src="script/Engine.js"></script>
<script src="script/Engine/Entities.js"></script>
<script src="script/Engine/Collisions.js"></script>
<script src="script/Entities/Player.js"></script>
<script src="script/Entities/Bullet.js"></script>
<script src="script/Entities/Asteroid.js"></script>
<script src="script/App.js"></script>
<script src="script/App/Game.js"></script>
<script src="script/Modules/Hud.js"></script>
</body>
</html>