-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditor.html
44 lines (27 loc) · 1004 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
</head>
<body>
<div style="text-align:center;">
<canvas id="editorCanvas" width="1000" height="750" style="vertical-align:middle;"></canvas>
<canvas id="previewCanvas" width="400" height="300" style="vertical-align:middle;"></canvas>
</div>
<script src="js/Math.js"></script>
<script src="js/Wall.js"></script>
<script src="js/Level.js"></script>
<script src="js/Audio.js"></script>
<script src="js/TriggerZones.js"></script>
<script src="js/Entity.js"></script>
<script src="js/Level.js"></script>
<script src="js/Graphics.js"></script>
<script src="editor/EditMode.js"></script>
<script src="editor/UI.js"></script>
<script src="editor/UI-Editor.js"></script>
<script src="editor/Main.js"></script>
<script src="js/Levels/TestLevels.js"></script>
<script src="js/Levels/Section1.js"></script>
</body>
</html>