Black Trigram (흑괘) - API Documentation - v0.2.10
    Preparing search index...

    Interface GameSaveData

    interface GameSaveData {
        playerId: string;
        playerProgress: {
            achievements: readonly string[];
            archetypeExperience: Record<string, number>;
            unlockedTechniques: readonly string[];
        };
        settings: {
            controls: Record<string, string>;
            difficulty: string;
            volume: number;
        };
        statistics: {
            favoriteArchetype: string;
            losses: number;
            totalMatches: number;
            wins: number;
        };
        version: string;
    }
    Index

    Properties

    playerId: string
    playerProgress: {
        achievements: readonly string[];
        archetypeExperience: Record<string, number>;
        unlockedTechniques: readonly string[];
    }
    settings: {
        controls: Record<string, string>;
        difficulty: string;
        volume: number;
    }
    statistics: {
        favoriteArchetype: string;
        losses: number;
        totalMatches: number;
        wins: number;
    }
    version: string