-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Not Game</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Custom Styles -->
<link rel="stylesheet" href="style.css"></link>
</head>
<body>
<div></div>
<div class="game-container">
<canvas class="game-canvas"></canvas>
</div>
<div class="box" id="bigbox"></div>
<!-- Project -->
<script src="./scripts/Global.js"></script>
<script src="./scripts/ui/Box.js"></script>
<script src="./scripts/ui/Button.js"></script>
<script src="./scripts/ui/Slider.js"></script>
<script src="./scripts/Draw.js"></script>
<script src="./scripts/math/QuadTree.js"></script>
<script src="./scripts/math/Vec.js"></script>
<script src="./scripts/math/Rand.js"></script>
<script src="./scripts/math/Mathf.js"></script>
<script src="./scripts/math/Angles.js"></script>
<script src="./scripts/Entities.js"></script>
<script src="./scripts/EntityCollisions.js"></script>
<script src="./scripts/Types.js"></script>
<script src="./scripts/contents/Effects.js"></script>
<script src="./scripts/Game.js"></script>
</body>
</html>