-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (32 loc) · 898 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Tiled RPG</title>
<style> body {
margin: 0;
background: #333;
} </style>
<script src="js/phaser.min.js"></script>
<script src="js/map.js"></script>
<script src="js/boot.js"></script>
<script src="js/preload.js"></script>
<script src="js/menu.js"></script>
<script src="js/game.js"></script>
<script src="js/player.js"></script>
<script src="js/enemy.js"></script>
</head>
<body>
<script>
(function() {
var game = new Phaser.Game(640, 480, Phaser.AUTO, '');
//var game = new Phaser.Game(1920, 1920, Phaser.AUTO, '');
game.state.add('Boot', RPG.BootState);
game.state.add('Preloader', RPG.PreloadState);
game.state.add('Menu', RPG.MenuState);
game.state.add('Game', RPG.GameState);
game.state.start('Boot');
})();
</script>
</body>
</html>