UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

21 lines 446 B
/** * * @author Alex Goldring * @copyright Company Named Limited (c) 2025 */ export class EntityBehavior extends Behavior<any> { constructor(); /** * Entity ID * @type {number} */ entity: number; /** * * @type {EntityComponentDataset} */ ecd: EntityComponentDataset; initialize(context: any): void; } import { Behavior } from "../Behavior.js"; //# sourceMappingURL=EntityBehavior.d.ts.map