-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (37 loc) · 1.62 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
37
38
39
40
41
42
43
44
45
46
47
<!doctype html>
<html>
<head>
<title>01 Simple platformer</title>
<!-- jQuery -->
<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
<!-- bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<!-- Crafty -->
<script type="text/javascript" src="https://rawgithub.com/craftyjs/Crafty/release/dist/crafty-min.js"></script>
<!-- gameInit (initializes Crafty) -->
<script type="text/javascript" src="js/gameInit.js"></script>
<!-- Scenes -->
<script type="text/javascript" src="js/scenes/loadingScene.js"></script>
<script type="text/javascript" src="js/scenes/menuScene.js"></script>
<script type="text/javascript" src="js/scenes/gameScene.js"></script>
<!-- Components -->
<script type="text/javascript" src="js/components/PlayButton.js"></script>
<script type="text/javascript" src="js/components/Floor.js"></script>
<script type="text/javascript" src="js/components/Player.js"></script>
<!-- Levels -->
<script type="text/javascript" src="js/levels/level01.js"></script>
<!-- Functions -->
<script type="text/javascript" src="js/functions/randRange.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-12 text-center text-primary"><h1>01 Simple platformer</h1><hr></div>
</div>
<div class="row">
<div class="col-sm-6 col-sm-offset-3" id="game"></div>
</div>
</div>
</body>
</html>