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