UNPKG

doggo-quest-logic

Version:

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

8 lines (7 loc) 210 B
import { StoryEntry } from '../StoryEntry'; import { GameWorld } from '../World/GameWorld'; export interface GameResponse { state: GameWorld; responses: StoryEntry[]; responseText: string; }