-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlevel_editor.html
More file actions
37 lines (37 loc) · 1.09 KB
/
Copy pathlevel_editor.html
File metadata and controls
37 lines (37 loc) · 1.09 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
<html>
<head>
<link rel='stylesheet' type='text/css' href='css/leveleditor.css'>
</head>
<body>
<div id='level_editor'>
<div class='header'>
<span>Save Level As</span>
<input class='save_level_name' value="mylevel">
<button class='btn save_btn'>
SAVE
</button>
<button class='btn back_btn'>
BACK TO MENU
</button>
</div>
<div class='lbody'>
<div class='levels_list'>
<h2>SAVED LEVELS</h2>
<ul>
</ul>
</div>
<div class='editor'>
<div class='obj grid'>
</div>
<div class='obj toolbox'>
</div>
</div>
</div>
</div>
<script src='js/levelmanager.js'></script>
<script src='js/editor.js'></script>
<script>
new LevelEditor('level_editor').init();
</script>
</body>
</html>