@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
26 lines (20 loc) • 463 B
JavaScript
import { GridActionRuleSet } from "./markers/GridActionRuleSet.js";
export class GridGeneratorConfig {
constructor() {
/**
*
* @type {number}
*/
this.seed = 0;
/**
*
* @type {GridActionRuleSet}
*/
this.cellActionRules = new GridActionRuleSet();
/**
*
* @type {number}
*/
this.edgeWidth = 10;
}
}