UNPKG

doggo-quest-logic

Version:

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

8 lines (7 loc) 250 B
import { GameObjectBase } from '../GameObjectBase'; import { Room } from '../Room'; export declare class DiningObject extends GameObjectBase { private room; constructor(room: Room); matches(reduced: string, room: Room): boolean; }