Skip to content

Commit

Permalink
Update phaser.d.ts
Browse files Browse the repository at this point in the history
Recent additions.
  • Loading branch information
clark-stevenson committed Apr 15, 2014
1 parent 1326e40 commit 0063c85
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions build/phaser.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1419,6 +1419,7 @@ declare module Phaser {
chrome: boolean;
chromeOS: boolean;
cocoonJS: boolean;
crosswalk: boolean;
css3D: boolean;
desktop: boolean;
ejecta: boolean;
Expand Down Expand Up @@ -2091,6 +2092,7 @@ declare module Phaser {
recordLimit: number;
recordPointerHistory: boolean;
recordRate: number;
resetLocked: boolean;
scale: Phaser.Point;
speed: Phaser.Point;
tapRate: number;
Expand Down Expand Up @@ -2211,7 +2213,7 @@ declare module Phaser {
justReleased(duration?: number): boolean;
processKeyDown(event: KeyboardEvent): void;
processKeyUp(event: KeyboardEvent): void;
reset(): void;
reset(hard?: boolean): void;
update(): void;

}
Expand Down Expand Up @@ -2339,7 +2341,7 @@ declare module Phaser {
processKeyUp(event: KeyboardEvent): void;
removeKey(keycode: number): void;
removeKeyCapture(keycode: number): void;
reset(): void;
reset(hard?: boolean): void;
start(): void;
stop(): void;
update(): void;
Expand Down Expand Up @@ -4051,6 +4053,7 @@ declare module Phaser {
render(): void;
remove(key: string): void;
resume(): void;
restart(clearWorld?: boolean, clearCache?: boolean): void;
start(key: string, clearWorld?: boolean, clearCache?: boolean, ...args:any[]): void;
update(): void;

Expand Down Expand Up @@ -4391,6 +4394,7 @@ declare module Phaser {
seconds: number;

add(delay: number, callback: Function, callbackContext: Object, ...args: any[]): Phaser.TimerEvent;
clearPendingEvents(): void;
destroy(): void;
loop(delay: number, callback: Function, callbackContext: Object, ...args: any[]): Phaser.TimerEvent;
order(): void;
Expand Down

0 comments on commit 0063c85

Please sign in to comment.