doggo-quest-logic
Version:
The game logic for the Doggo Quest text-based game sample project
14 lines (13 loc) • 385 B
TypeScript
import { CommandContext } from '../../CommandContext';
import { GameObject } from '../GameObject';
import { Room } from '../Room';
import { RoomBase } from '../RoomBase';
export declare class Office extends RoomBase {
objects: GameObject[];
east: Room;
south: Room;
up: Room;
in: Room;
constructor();
describe(context: CommandContext): void;
}