@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
15 lines • 374 B
TypeScript
export class FogOfWarRevealer {
static fromJSON(j: any): FogOfWarRevealer;
radius: Vector1;
toJSON(): {
radius: number;
};
fromJSON({ radius }: {
radius: any;
}): void;
}
export namespace FogOfWarRevealer {
let typeName: string;
}
import Vector1 from "../../../core/geom/Vector1.js";
//# sourceMappingURL=FogOfWarRevealer.d.ts.map