forked from kholland4/platformeng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
leveledit.html
33 lines (32 loc) · 1.36 KB
/
leveledit.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="core.css">
<link rel="stylesheet" href="leveledit.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<script src="leveledit.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="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="sidepanel">
<div id="sp-header"></div>
<div id="sp-main"></div>
</div>
<div id="controls">
<div class="ctl-button ctl-color-1" onclick="showLevelSelect(this);">Select Level</div> <!-- TODO - lImportGame style behavior -->
<div class="ctl-button ctl-color-1" onclick="lImportGame();">Import</div>
<div class="ctl-button ctl-color-1" onclick="lExportGame();">Export</div>
<div class="ctl-button ctl-color-2" onclick="addCtl('box');" title="hotkey: b">+ Box</div>
<div class="ctl-button ctl-color-2" onclick="addCtl('coin');" title="hotkey: c">+ Coin</div>
<div class="ctl-button ctl-color-2" onclick="addCtl('annotation');" title="hotkey: n">+ Annotation</div>
</div>
</body>
</html>