phaser/src/gameobjects/GameObject.js
2016-10-09 23:39:27 +01:00

15 lines
317 B
JavaScript

/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2016 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
Phaser.GameObject = function (game)
{
this.game = game;
this.children = null;
this.transform = null;
};