UNPKG

doggo-quest-logic

Version:

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

11 lines (10 loc) 380 B
import { StoryEntryType } from './StoryEntryType'; import { Sentence } from './Parsing/Sentence'; import { GameRoom } from './World/GameRoom'; export declare class StoryEntry { constructor(EntryType: StoryEntryType, Text: string, sentence?: Sentence, room?: GameRoom); EntryType: StoryEntryType; Text: string; Sentence?: Sentence; Room?: GameRoom; }