UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

14 lines 487 B
export class AbstractActionDescription { /** * Main entry point * @param {number} actor Entity ID of the actor * @param {EntityComponentDataset} dataset * @param context * @param {DynamicActorSystem} system * @returns {Behavior} */ execute(actor: number, dataset: EntityComponentDataset, context: any, system: DynamicActorSystem): Behavior; fromJSON(j: any): void; type: string; } //# sourceMappingURL=AbstractActionDescription.d.ts.map