-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (26 loc) · 752 Bytes
/
index.html
File metadata and controls
36 lines (26 loc) · 752 Bytes
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8" />
<title>Follow Me - Game Dolphin</title>
<script src="phaser.min.js"></script>
<script src="Boot.js"></script>
<script src="Preloader.js"></script>
<script src="Game.js"></script>
</head>
<body style="margin:0px;" bgcolor="#000000">
<div id="gameContainer"></div>
<script type="text/javascript">
/* Created by Nambiar for Game Dolphin (gamedolph.in)
Game - Follow Me - Simple Simon Clone
*/
window.onload = function() {
var game = new Phaser.Game(360,600, Phaser.AUTO, 'gameContainer');
game.state.add('Boot', BasicGame.Boot);
game.state.add('Preloader', BasicGame.Preloader);
game.state.add('Game', BasicGame.Game);
game.state.start('Boot');
};
</script>
</body>
</html>