예제 #1
0
파일: Specer.cs 프로젝트: BrettMT/SpecEvoer
 public void AddSubBiome(Biome main, Biome sub)
 {
     try
     {
         main.AddBiome(sub);
         Logger.AddLog($"Added the sub Biome {sub.Name} to {main.Name}");
         BiomesChanged.Invoke(this, null);
     }
     catch
     {
         Logger.AddLog($"Unable to add the sub Biome {sub.Name} to {main.Name}");
     }
 }