SaveMetadata: typeof eMathMetadata & {
    game: {
        id: string;
        title: string;
        version: string;
    };
    hash: string;
}

Interface for the metadata of a save file.

Type declaration

  • game: {
        id: string;
        title: string;
        version: string;
    }

    Metadata about the game.

    • id: string

      The id of the game.

    • title: string

      The title of the game.

    • version: string

      The version of the game.

  • hash: string

    The hash of the game data (Default hash is MD5) Used to check for tampering.