UNPKG

doggo-quest-logic

Version:

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

9 lines (8 loc) 246 B
import { GameObjectBase } from '../GameObjectBase'; import { Room } from '../Room'; export declare class ChairObject extends GameObjectBase { private room; constructor(room: Room); private handleLook; private handleEat; }