UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

22 lines 641 B
export class ViewEntity extends View<HTMLElement> { constructor(); /** * * @param {*} parameters * @param {EntityComponentDataset} dataset * @param {number} entity * @param {Engine} engine */ initialize(parameters: any, entity: number, dataset: EntityComponentDataset, engine: Engine): void; /** * Release resources and bring view to initial state ready to be destroyed or re-used */ finalize(): void; /** * @readonly * @type {boolean} */ readonly isViewEntity: boolean; } import View from "../../../../view/View.js"; //# sourceMappingURL=ViewEntity.d.ts.map