UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

19 lines 381 B
export class GridGeneratorConfig { /** * * @type {number} */ seed: number; /** * * @type {GridActionRuleSet} */ cellActionRules: GridActionRuleSet; /** * * @type {number} */ edgeWidth: number; } import { GridActionRuleSet } from "./markers/GridActionRuleSet.js"; //# sourceMappingURL=GridGeneratorConfig.d.ts.map