Exemplo n.º 1
0
 internal static void UnchooseAltIron()
 {
     ChosenAltIron = null;
 }
Exemplo n.º 2
0
 internal static void Add(AltIron alt)
 {
     AltIrons.Add(alt);
 }
Exemplo n.º 3
0
 public static AltIron GetAltIron()
 {
     return(ChosenAltIron ?? (ChosenAltIron = AltIrons[WorldGen.genRand.Next(AltIrons.Count)]));
 }