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 Kitchen extends RoomBase {
objects: GameObject[];
east: Room;
constructor();
describe(context: CommandContext): void;
}