-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1.06 KB
/
index.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
35
36
<html>
<head>
<title>Runner.js</title>
<style type="text/css">
canvas {
border: 1px solid black;
width: 757px;
/*width: 640px;*/
height: 426px;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
</body>
<!-- third libs -->
<script type="text/javascript" src="underscore-min.js"></script>
<!-- Runner.js libs -->
<script type="text/javascript" src="index-html.js"></script>
<script type="text/javascript" src="utils.js"></script>
<!-- Runner.js modules -->
<script type="text/javascript" src="ActionController.js"></script>
<script type="text/javascript" src="ResourcesLoader.js"></script>
<script type="text/javascript" src="Menu.js"></script>
<script type="text/javascript" src="Player.js"></script>
<script type="text/javascript" src="World.js"></script>
<script type="text/javascript" src="Background.js"></script>
<!-- Runner.js model -->
<script type="text/javascript" src="Block.js"></script>
<!-- main file -->
<script type="text/javascript" src="main.js"></script>
</html>