-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (42 loc) · 1.46 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
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<title>Goosebumps TypeText Adventure</title>
<style>
* { padding: 0; margin: 0; }
canvas {
background: #eee;
display: block;
margin: 0 auto;
}
body {
background: #000000;
}
</style>
</head>
<body>
<canvas id="canvas" width="1920" height="1080"></canvas>
<script src="src/Globals.js"></script>
<script src="src/AudioManager.js"></script>
<script src="src/models/Model.js"></script>
<script src="src/models/Text.js"></script>
<script src="src/models/TypeText.js"></script>
<script src="src/blocks/Block.js"></script>
<script src="src/blocks/Command.js"></script>
<script src="src/blocks/TextCommand.js"></script>
<script src="src/blocks/CenteredTextCommand.js"></script>
<script src="src/blocks/QuestionCommand.js"></script>
<script src="src/blocks/MusicCommand.js"></script>
<script src="src/blocks/LoadCommand.js"></script>
<script src="src/blocks/WheelCommand.js"></script>
<script src="./src/layers/Layer.js"></script>
<script src="./src/layers/GameLayer.js"></script>
<script src="src/KeyboardEvents.js"></script>
<script src="./src/Res.js"></script>
<script src="./Main.js"></script>
</body>
</html>