UNPKG

doggo-quest-logic

Version:

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

12 lines (11 loc) 321 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class StoryEntry { constructor(EntryType, Text, sentence, room) { this.EntryType = EntryType; this.Text = Text; this.Sentence = sentence; this.Room = room; } } exports.StoryEntry = StoryEntry;