mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 20:53:39 +00:00
5 lines
235 B
JavaScript
5 lines
235 B
JavaScript
/// <reference path="../../Phaser/Game.ts" />
|
|
(function () {
|
|
// If you don't give any parameters to Phaser beyond the defaults you'll see the standard Phaser boot screen appear.
|
|
var game = new Phaser.Game(this, 'game');
|
|
})();
|