UNPKG

excalibur

Version:

Excalibur.js is a simple JavaScript game engine with TypeScript bindings for making 2D games in HTML5 Canvas. Our mission is to make web game development as simple as possible.

12 lines (11 loc) 290 B
import { Action } from '../Action'; export declare class CallMethod implements Action { id: number; private _method; private _hasBeenCalled; constructor(method: () => any); update(elapsed: number): void; isComplete(): boolean; reset(): void; stop(): void; }