-
Notifications
You must be signed in to change notification settings - Fork 0
/
editor.html
24 lines (19 loc) · 982 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>KERNEL PANIC LEVEL EDITOR</title>
<link rel="stylesheet" type="text/css" href="assets/css/ui.css">
<script type="text/javascript" src="lib/crafty.js"></script>
<script type="text/javascript" src="src/references.js"></script>
<script type="text/javascript" src="src/tools.js"></script>
<script type="text/javascript" src="src/component.js"></script>
<script type="text/javascript" src="src/editor/components.js"></script>
<script type="text/javascript" src="src/scenes.js"></script>
<script type="text/javascript" src="src/main.js"></script>
</head>
<body onload="kernelPanicEditorMain()">
<div id="cr-stage"></div>
</body>
</html>