Added grunt file and npm package for OSX debs

This commit is contained in:
Richard Davey
2013-04-20 01:24:38 +01:00
parent 1217bf4722
commit 364492d786
7 changed files with 2985 additions and 10622 deletions
+8
View File
@@ -520,6 +520,14 @@ module Phaser {
this._angle = this._game.math.wrap(value, 360, 0);
}
public set width(value:number) {
this.bounds.width = value;
}
public set height(value:number) {
this.bounds.height = value;
}
public get width(): number {
return this.bounds.width;
}