Documentation
Types
SavedGame

SavedGame

⚠️

This page is under construction.

⚠️

Beta feature, subject to change.

interface SavedGame {
    name: string;
    meta: {
        created: number;
        updated: number;
        id: string;
    };
    game: {
        store: { [key: string]: StorableData; };
        elementStates: RawData<ElementStateRaw>[];
        stage: PlayerStateData;
        currentAction: string | null;
        services: { [key: string]: unknown; };
    };
}