mirror of
https://github.com/wassname/phaser.git
synced 2026-07-12 00:50:45 +08:00
removed duplicate line in Timer class
The method create(...) was defined twice (line 1357 and line 1360). I removed line 1360.
This commit is contained in:
Vendored
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user