-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
25 lines (24 loc) · 908 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="core.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<script src="core.js" type="text/javascript"></script>
<script src="player.js" type="text/javascript"></script>
<script src="controls.js" type="text/javascript"></script>
<script src="map.js" type="text/javascript"></script>
<script src="imgloader.js" type="text/javascript"></script>
<script src="hud.js" type="text/javascript"></script>
<script src="saveload.js" type="text/javascript"></script>
<script src="levelsel.js" type="text/javascript"></script>
</head>
<body>
<div id="main">
<canvas id="canvas"></canvas>
</div>
<div id="controls">
<div class="ctl-button ctl-color-1" onclick="showLevelSelect(this);">Select Level</div>
<div class="ctl-button ctl-color-2" onclick="importGame(); resetTime();">Import</div>
</div>
</body>
</html>