mirror of
https://github.com/photonstorm/phaser
synced 2025-03-07 08:47:26 +00:00
18 lines
477 B
JavaScript
18 lines
477 B
JavaScript
|
/**
|
||
|
* @author Richard Davey <rich@photonstorm.com>
|
||
|
* @copyright 2014 Photon Storm Ltd.
|
||
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Ninja Physics Circle constructor.
|
||
|
*
|
||
|
* @class Phaser.Physics.Ninja.Circle
|
||
|
* @classdesc Arcade Physics Constructor
|
||
|
* @constructor
|
||
|
* @param {Phaser.Game} game reference to the current game instance.
|
||
|
*/
|
||
|
Phaser.Physics.Ninja.Circle = function (system, x, y, width, height) {
|
||
|
|
||
|
}
|