Strata - v1.4.10
    Preparing search index...

    Interface RPGState

    interface RPGState {
        currentLocation: string;
        gameFlags: Record<string, boolean>;
        gold: number;
        inventory: InventoryItem[];
        player: RPGPlayerStats;
        playTime: number;
        quests: Quest[];
        visitedLocations: string[];
    }
    Index

    Properties

    currentLocation: string
    gameFlags: Record<string, boolean>
    gold: number
    inventory: InventoryItem[]
    playTime: number
    quests: Quest[]
    visitedLocations: string[]