phaser/wip/TS Source/particles/zone/Zone.ts
2013-09-13 16:24:01 +01:00

20 lines
391 B
TypeScript

/// <reference path="../../_definitions.ts" />
module Phaser.Particles.Zones {
export class Zone {
constructor() {
this.vector = new Phaser.Vec2;
this.random = 0;
this.crossType = "dead";
this.alert = true;
}
vector: Phaser.Vec2;
random: number;
crossType: string;
alert: bool;
}
}