/** * @author Richard Davey * @copyright 2016 Photon Storm Ltd. * @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License} */ Phaser.Component = function (gameObject) { this.gameObject = gameObject; }; Phaser.Component.prototype.constructor = Phaser.Component;