SavedGame
⚠️
This page is under construction.
⚠️
Beta feature, subject to change.
interface SavedGame {
    name: string;
    meta: SavedGameMetaData;
    game: {
        store: { [key: string]: StorableData; };
        elementStates: RawData<ElementStateRaw>[];
        stage: PlayerStateData;
        currentAction: string | null;
        services: { [key: string]: unknown; };
    };
}name
The name of the saved game
meta
The metadata of the saved game, see SavedGameMetaData
game
Game data of the saved game