phaser/src/geom/Polygon.js

13 lines
292 B
JavaScript
Raw Normal View History

2013-11-05 20:25:06 +01:00
Phaser.Polygon = function (points) {
PIXI.Polygon.call(this, points);
/**
* @property {Description} type - Description.
*/
this.type = Phaser.POLYGON;
};
Phaser.Polygon.prototype = Object.create(PIXI.Polygon.prototype);
Phaser.Polygon.prototype.constructor = Phaser.Polygon;