UNPKG

doggo-quest-logic

Version:

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

14 lines (13 loc) 472 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const GameObjectBase_1 = require("../GameObjectBase"); const SqueakerObject_1 = require("./SqueakerObject"); class UnderCouchFloorObject extends GameObjectBase_1.GameObjectBase { constructor(room) { super('floor'); this.children = [ new SqueakerObject_1.SqueakerObject(room), ]; } } exports.UnderCouchFloorObject = UnderCouchFloorObject;