UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

21 lines 442 B
export class AbstractParticleRenderer { /** * * @type {Engine} */ engine: Engine; /** * * @param {Engine} engine */ initialize(engine: Engine): void; finalize(): void; startup(): void; shutdown(): void; /** * * @param {ParticleRenderCommand[]} commands */ render(commands: ParticleRenderCommand[]): void; } //# sourceMappingURL=AbstractParticleRenderer.d.ts.map