forked from ultrabolido/PrinceJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconversor.html
36 lines (27 loc) · 1.09 KB
/
conversor.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>
<meta charset="UTF-8" />
<title>Phaser Basic Project Template</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.2.2/phaser.min.js"></script>
<script src="src/Conversor.js"></script>
<script src="src/Level.js"></script>
</head>
<body>
<div id="gameContainer"></div>
<script type="text/javascript">
window.onload = function() {
// Create your Phaser game and inject it into the gameContainer div.
// We did it in a window.onload event, but you can do it anywhere (requireJS load, anonymous function, jQuery dom ready, - whatever floats your boat)
var game = new Phaser.Game(640, 400, Phaser.AUTO, 'gameContainer',null,false,false);
// Add the States your game has.
// You don't have to do this in the html, it could be done in your Boot state too, but for simplicity I'll keep it here.
//game.state.add('Boot', BasicGame.Boot);
//game.state.add('Preloader', BasicGame.Preloader);
//game.state.add('MainMenu', BasicGame.MainMenu);
game.state.add('Game', PrinceJS.Conversor);
// Now start the Boot state.
game.state.start('Game');
};
</script>
</body>
</html>