UNPKG

@erikyuzwa/rogue-punk

Version:

a JavaScript library to help you build your roguelike adventures

18 lines (17 loc) 322 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.World = void 0; class World { constructor(options = {}) { this.options = options; } begin() { } end() { } render(display) { } handleInput(inputType, inputData) { } } exports.World = World;