| 23 | export function DefaultTouchProcessor (touchProcessorOptions?: TouchProcessorOptions): any; |
| 24 | |
| 25 | export interface TimeUpdate { |
| 26 | current: number; |
| 27 | delta: number; |
| 28 | previous: number; |
| 29 | previousDelta: number; |
| 30 | } |
| 31 | |
| 32 | export interface GameEngineUpdateEventOptionType { |
| 33 | dispatch: (event: any) => void; |
nothing calls this directly
no outgoing calls
no test coverage detected