Ejemplo n.º 1
0
    public bool LoadPlayerData()
    {
        GameLog log = SaveGameData.LoadPlayerDetails();

        if (log != null)
        {
            isMuted        = log.muteStats;
            levelsUnlocked = log.levelsUnlocked;
            return(true);
        }
        else
        {
            return(false);
        }
    }