doggo-quest-logic
Version:
The game logic for the Doggo Quest text-based game sample project
11 lines (10 loc) • 338 B
TypeScript
import { CommandContext } from '../../CommandContext';
import { GameObject } from '../GameObject';
import { Room } from '../Room';
import { RoomBase } from '../RoomBase';
export declare class OnChair extends RoomBase {
objects: GameObject[];
constructor();
down: Room;
describe(context: CommandContext): void;
}