-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (43 loc) · 1.65 KB
/
index.html
File metadata and controls
57 lines (43 loc) · 1.65 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!-- Please carefully review the rules about academic integrity found in the academicIntegrity.md file found at the root of this project. -->
<!doctype html>
<html>
<head>
<title>Day 09</title>
<style>
/* Engine-Specific */
* {
margin: 0;
overflow: hidden;
}
</style>
</head>
<body>
<canvas id="canv"></canvas>
<script src="./engine/Engine.js"></script>
<script src="./engine/Scene.js"></script>
<script src="./engine/GameObject.js"></script>
<script src="./engine/Component.js"></script>
<script src="./engine/Input.js"></script>
<script src="./engine/Vector2.js"></script>
<script src="./engine/Time.js"></script>
<script src="./engine/Collisions.js"></script>
<script src="./engine/components/Transform.js"></script>
<script src="./engine/components/TextLabel.js"></script>
<script src="./engine/components/Polygon.js"></script>
<script src="./engine/components/Collider.js"></script>
<script src="./game/MainScene.js"></script>
<script src="./game/BatSymbolGameObject.js"></script>
<script src="./game/BatSymbolComponent.js"></script>
<script src="./game/TriangleComponent.js"></script>
<script src="./game/TriangleGameObject.js"></script>
<script src="./game/LaserComponent.js"></script>
<script src="./game/LaserGameObject.js"></script>
<script src="./game/PointsComponent.js"></script>
<script src="./game/PointsGameObject.js"></script>
<script src="./game/Globals.js"></script>
<script>
Engine.currentScene = new MainScene()
Engine.start()
</script>
</body>
</html>