From 971e17fabe7f987f9379c443ada87d70f788ef99 Mon Sep 17 00:00:00 2001 From: hstolte Date: Sat, 18 Jan 2014 22:34:28 +0100 Subject: [PATCH] removed duplicate line in Timer class The method create(...) was defined twice (line 1357 and line 1360). I removed line 1360. --- build/phaser.d.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/build/phaser.d.ts b/build/phaser.d.ts index a4cbcdac..fe78ab88 100644 --- a/build/phaser.d.ts +++ b/build/phaser.d.ts @@ -1357,7 +1357,6 @@ declare module Phaser { 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;