-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditor.html
34 lines (30 loc) · 1.18 KB
/
editor.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
<!doctype html>
<html>
<head>
<title>Znake Map Editor</title>
<link rel="stylesheet" href="stylesheets/editor.css" type="text/css" />
<script type="text/javascript" src="lib/jquery-1.8.1.min.js"></script>
<script type="text/javascript" src="compiled/Core/Layer.js"></script>
<script type="text/javascript" src="compiled/MapEditor/Editor.js"></script>
<script type="text/javascript" src="compiled/MapEditor/Brush.js"></script>
<script type="text/javascript" src="compiled/MapEditor/Panel.js"></script>
<script type="text/javascript" src="compiled/MapEditor/MapEditor.js"></script>
<script type="text/javascript" src="compiled/MapEditor/main.js"></script>
</head>
<body>
<h1>Znake Map Editor</h1>
<div id="MapEditor"></div>
<div id="panel">
<div class="heightValue"></div>
<div class="heightValue"></div>
<div class="heightValue"></div>
<div class="heightValue"></div>
<div class="heightValue"></div>
<div class="heightValue"></div>
<div class="heightValue"></div>
<div class="heightValue"></div>
<div class="heightValue"></div>
<button id="submit">Submit</button>
</div>
</body>
</html>