-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
20 lines (20 loc) · 952 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
<head>
<title>record game</title>
<link type="text/css" rel="stylesheet" href="stylesheets/stylesheet.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="js/phaser.min.js"></script>
<script type="text/javascript" src="https://code.createjs.com/createjs-2015.11.26.min.js"></script>
<script type="text/javascript" src="https://code.createjs.com/soundjs-0.6.2.min.js"></script>
<script type="text/javascript" src="js/sound.js"></script>
<script type="text/javascript" src="js/phaserGame.js"></script>
<script type="text/javascript" src="js/enemySpawning.js"></script>
<script type="text/javascript" src="js/collision.js"></script>
<noscript>Your browser does not support javascript or scripts have been disabled.</noscript>
</head>
<body>
<div id="outer">
<div id="inner"></div>
</div>
</body>
</html>