-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStarForge.html
More file actions
61 lines (49 loc) · 2.57 KB
/
StarForge.html
File metadata and controls
61 lines (49 loc) · 2.57 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!doctype html>
<html>
<head>
<!-- external libraries -->
<link rel="icon" type="image/png" href="gfx/favicon.png">
<style type="text/css"> body { margin: 0; padding: 0; color: #333333; background-image:url(''); } </style>
<!-- external code -->
<script type="text/javascript" src="js/framework/ext/uuid.js"></script>
<!-- framework code -->
<script type="text/javascript" src="js/framework/Service.js"></script>
<script type="text/javascript" src="js/framework/Animation.js"></script>
<script type="text/javascript" src="js/framework/Application.js"></script>
<script type="text/javascript" src="js/framework/AppStateController.js"></script>
<script type="text/javascript" src="js/framework/AudioManager.js"></script>
<script type="text/javascript" src="js/framework/NodeView.js"></script>
<script type="text/javascript" src="js/framework/ButtonView.js"></script>
<script type="text/javascript" src="js/framework/EventBus.js"></script>
<script type="text/javascript" src="js/framework/Graphics.js"></script>
<script type="text/javascript" src="js/framework/LoadingState.js"></script>
<script type="text/javascript" src="js/framework/ParticleSystem.js"></script>
<script type="text/javascript" src="js/framework/Physics.js"></script>
<script type="text/javascript" src="js/framework/ResourceProvider.js"></script>
<script type="text/javascript" src="js/framework/SaveData.js"></script>
<script type="text/javascript" src="js/framework/TiledMap.js"></script>
<script type="text/javascript" src="js/framework/Utility.js"></script>
<script type="text/javascript" src="js/framework/Vec2D.js"></script>
<!-- game code -->
<!-- model -->
<script type="text/javascript" src="StarForge/js/model/StarForgeModel.js"></script>
<!-- view -->
<script type="text/javascript" src="StarForge/js/view/StarForgeEditorView.js"></script>
<!-- controller -->
<script type="text/javascript" src="StarForge/js/controller/StarForgeEditorState.js"></script>
<script type="text/javascript" src="StarForge/js/main.js"></script>
<script type="text/javascript">
document.addEventListener( "DOMContentLoaded", function() {
document.removeEventListener( "DOMContentLoaded", arguments.callee, false );
game_create();
}, false );
</script>
</head>
<body>
<center>
<canvas id="content" width="1024" height="800" style="border:1px solid #000000;" tabindex="1"></canvas>
</center>
<hr>
<a href="todo.txt" target="_window">Dev Log</a>
</body>
</html>