Merge pull request #315 from gareththegeek/patch-1

Fix typescript compile error in 0.9.5
This commit is contained in:
Richard Davey
2014-01-16 07:27:54 -08:00
+6 -6
View File
@@ -1353,11 +1353,11 @@ declare module Phaser {
static SECOND: number;
static HALF: number;
static QUARTER: number;
create(delay: number, loop: boolean, repeatCount: number, callback: any, callbackContext: any, ...): Phaser.TimerEvent;
add(delay: number, callback: any, callbackContext: any, ...): Phaser.TimerEvent;
repeat(delay: number, repeatCount: number, callback: any, callbackContext: any, ...): Phaser.TimerEvent;
create(delay: number, loop: boolean, repeatCount: number, callback: any, callbackContext: any, ...): Phaser.TimerEvent;
loop(delay: number, callback: any, callbackContext: any, ...): Phaser.TimerEvent;
create(delay: number, loop: boolean, repeatCount: number, callback: any, callbackContext: any, ...args: any[]): Phaser.TimerEvent;
add(delay: number, callback: any, callbackContext: any, ...args: any[]): Phaser.TimerEvent;
repeat(delay: number, repeatCount: number, callback: any, callbackContext: any, ...args: any[]): Phaser.TimerEvent;
create(delay: number, loop: boolean, repeatCount: number, callback: any, callbackContext: any, ...args: any[]): Phaser.TimerEvent;
loop(delay: number, callback: any, callbackContext: any, ...args: any[]): Phaser.TimerEvent;
start(): void;
stop(): void;
remove(event: Phaser.TimerEvent): boolean;
@@ -1967,4 +1967,4 @@ declare module Phaser {
game: Phaser.Game;
render(tilemap: Tilemap): void;
}
}
}