Beispiel #1
0
 public void SetBeatmap(Beatmap beatmap)
 {
     if (!beatmap.CompareHash(Replay.BeatmapHash))
     {
         throw new Exception("The beatmap does not have the hash the replay requires.");
     }
     Beatmap   = beatmap;
     _bManager = new BeatmapManager(beatmap);
     _bManager.SetMods(Replay.Enabled_Mods);
     _bManager.DifficultyCalculations();
 }