UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

15 lines 366 B
export class FluidSimulator { /** * * @type {ArrayBuffer|null} */ buffer: ArrayBuffer | null; ensure_buffer(size: any): void; /** * * @param {FluidField} field * @param {number} time_delta_in_seconds */ step(field: FluidField, time_delta_in_seconds: number): void; } //# sourceMappingURL=FluidSimulator.d.ts.map