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.
15 lines (14 loc) • 450 B
TypeScript
import { Entity } from '../../EntityComponentSystem';
import { Action } from '../Action';
/**
* Action that can run multiple {@apilink Action}s or {@apilink ActionSequence}s at the same time
*/
export declare class ParallelActions implements Action {
id: number;
private _actions;
constructor(parallelActions: Action[]);
update(elapsed: number): void;
isComplete(entity: Entity): boolean;
reset(): void;
stop(): void;
}