mirror of
https://github.com/wassname/phaser.git
synced 2026-08-14 12:40:17 +08:00
29 lines
541 B
TypeScript
29 lines
541 B
TypeScript
/// <reference path="../../math/Vec2.ts" />
|
|
/// <reference path="../../geom/Point.ts" />
|
|
/// <reference path="../../math/Vec2Utils.ts" />
|
|
/// <reference path="Manager.ts" />
|
|
/// <reference path="Body.ts" />
|
|
/// <reference path="Shape.ts" />
|
|
|
|
/**
|
|
* Phaser - Advanced Physics - Shape
|
|
*
|
|
* Based on the work Ju Hyung Lee started in JS PhyRus.
|
|
*/
|
|
|
|
module Phaser.Physics.Advanced {
|
|
|
|
export class ShapeCircle extends Phaser.Physics.Advanced.Shape {
|
|
|
|
constructor() {
|
|
|
|
super(Manager.SHAPE_TYPE_CIRCLE);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
} |