Example #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);
 }
Example #2
0
 public static void TwoGliders(Map map)
 {
     ConstructGenerator.AddGlider(map, 0, 0, DiagonalDirection.DownRight);
     ConstructGenerator.AddGlider(map, 5, 0, DiagonalDirection.DownRight);
 }