mirror of
https://github.com/photonstorm/phaser
synced 2025-03-01 05:47:28 +00:00
6 lines
235 B
JavaScript
6 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');
|
||
|
})();
|