mirror of
https://github.com/photonstorm/phaser
synced 2024-12-24 03:53:28 +00:00
9 lines
238 B
TypeScript
9 lines
238 B
TypeScript
|
/// <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');
|
||
|
|
||
|
})();
|