UNPKG

doggo-quest-logic

Version:

The game logic for the Doggo Quest text-based game sample project

10 lines (9 loc) 300 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const GameObjectBase_1 = require("../GameObjectBase"); class OutsideObject extends GameObjectBase_1.GameObjectBase { constructor(room) { super('outside'); } } exports.OutsideObject = OutsideObject;