phaser/v3/src/boot/Game.js

15 lines
315 B
JavaScript
Raw Normal View History

2016-10-17 20:22:55 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2016 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
2016-11-22 03:32:41 +00:00
var DebugHeader = require('./DebugHeader');
2016-11-22 03:11:33 +00:00
var Game = function ()
{
DebugHeader(0);
2016-11-22 03:32:41 +00:00
};
2016-10-17 20:22:55 +00:00
2016-11-22 03:11:33 +00:00
module.exports = Game;