protected override void DoInitialize(object data)
        {
            SharedSaveGame d = data as SharedSaveGame;

            MusicVolume = d.MusicVolume;
            SfxVolume = d.SfxVolume;
            HighScores = d.HighScores;
            FullScreen = d.FullScreen;
            ShowHelpBar = d.ShowHelpBar;
            
            HighScores.Initialize();
        }
Beispiel #2
0
        protected override void DoInitialize(object donnee)
        {
            SaveGame d = donnee as SaveGame;

            Progress = d.Progress;
            Scores = d.Scores;
            Tutorials = d.Tutorials;
            CurrentWorld = d.CurrentWorld;

            Progress.Initialize();
            Scores.Initialize();
            Tutorials.Initialize();
        }