mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 17:16:03 +00:00
20 lines
391 B
TypeScript
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;
|
|
|
|
}
|
|
}
|