-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (38 loc) · 1.13 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
<!doctype html>
<html>
<head>
<title>LD49</title>
<style>
body {
margin: 0;
overflow: hidden;
background: #ddd;
}
#container {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin: auto;
outline: 1px solid rgb(53 46 61);
}
html {
background: #393940;
}
</style>
<script src="script/lib/playground.js"></script>
<script src="script/Main.js"></script>
<script src="script/UI.js"></script>
<script src="script/Menu.js"></script>
<script src="script/Transitions.js"></script>
<script src="script/Renderer.js"></script>
<script src="script/Game.js"></script>
<script src="script/LevelLoader.js"></script>
<script src="script/Tiles.js"></script>
<script src="script/Entities.js"></script>
</head>
<body onload="ld49.onLoad()">
<div id="container"></div>
</body>
</html>