@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
31 lines • 552 B
TypeScript
export class SystemEntityContext {
/**
*
* @type {number}
*/
entity: number;
/**
* Pointer back to the system
* @type {System}
*/
system: System;
/**
*
* @type {*[]}
*/
components: any[];
/**
*
* @type {boolean}
* @protected
*/
protected __is_linked: boolean;
/**
*
* @returns {EntityComponentDataset}
*/
getDataset(): EntityComponentDataset;
link(): void;
unlink(): void;
}
//# sourceMappingURL=SystemEntityContext.d.ts.map