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-24 01:35:02 +00:00
|
|
|
var Config = require('./Config');
|
2016-11-22 03:32:41 +00:00
|
|
|
var DebugHeader = require('./DebugHeader');
|
2016-11-22 03:11:33 +00:00
|
|
|
|
2016-11-24 01:35:02 +00:00
|
|
|
var Game = function (config)
|
2016-11-22 03:11:33 +00:00
|
|
|
{
|
2016-11-24 01:35:02 +00:00
|
|
|
this.config = new Config(config);
|
|
|
|
|
2016-11-24 15:40:05 +00:00
|
|
|
DebugHeader(this);
|
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;
|