mirror of
https://github.com/neogeek23/Life.git
synced 2026-02-04 11:08:23 +00:00
This is this starting of the layout of Conway's Life game. I'm trying to make it so that having different states is as easy as just adding them to State.cs and that any number of dimensions should be handled quickly. Visualizing higher dimensional life games might be tricky, but this should be able to determine it.
19 lines
461 B
C#
19 lines
461 B
C#
using System;
|
|
using System.CodeDom;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace N_Space{
|
|
public class Region_Test{
|
|
public void CreateRegionTestObject() {
|
|
Region regionCheck = new Region(0);
|
|
|
|
if (regionCheck == null) {
|
|
throw new System.ArgumentException("Region created cannot be null");
|
|
}
|
|
}
|
|
}
|
|
}
|