UNPKG

doggo-quest-logic

Version:

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

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