-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (26 loc) · 1.03 KB
/
index.html
File metadata and controls
27 lines (26 loc) · 1.03 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>LightSaber.js</title>
<script src="js/phaser.js"></script>
<script src="lib/jwebkit.js/dist/jwebkit.js"></script>
<!--script src="https://code.jquery.com/jquery-3.1.0.js" ></script-->
<script src="src/lightsaber.js"></script>
<script src="src/display_object.js"></script>
<script src="src/dom_wrapper.js"></script>
<script src="src/utils.js"></script>
<script src="src/engine.js"></script>
<script src="src/youtube_video.js"></script>
<script src="src/sprite.js"></script>
<script src="src/scene.js"></script>
<script src="src/bitmap_data.js"></script>
<script src="app.js"></script>
</head>
<style>
body, html { overflow: hidden; margin: 0px; background-color: cornflowerblue; }
</style>
<body>
<div id="container" style="height:300px; width:50%; background: white;"></div>
</body>
</html>