Esempio n. 1
0
 public static void FourCornerGliders(Map map)
 {
     ConstructGenerator.AddGlider(map, 0, 0, DiagonalDirection.DownRight);
     ConstructGenerator.AddGlider(map, map.ZeroBasedLength - 0, 0, DiagonalDirection.DownLeft);
     ConstructGenerator.AddGlider(map, 0, map.ZeroBasedHeight - 0, DiagonalDirection.UpRight);
     ConstructGenerator.AddGlider(map, map.ZeroBasedLength - 0, map.ZeroBasedHeight - 0, DiagonalDirection.UpLeft);
 }
Esempio n. 2
0
 public static void KoksGalaxy(Map map)
 {
     ConstructGenerator.AddKoksGalaxy(map, 4, 6);
 }
Esempio n. 3
0
 public static void Pentadecathlon(Map map)
 {
     ConstructGenerator.AddPentadecathlon(map, 4, 8);
 }
Esempio n. 4
0
 public static void TwoGliders(Map map)
 {
     ConstructGenerator.AddGlider(map, 0, 0, DiagonalDirection.DownRight);
     ConstructGenerator.AddGlider(map, 5, 0, DiagonalDirection.DownRight);
 }