Life/Region.cs
neogeek23 92fa0de002 Add files via upload
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.
2017-09-29 02:22:00 -05:00

25 lines
572 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace N_Space {
class Region {
private readonly State _default;
private readonly int _size;
private Dimension _progenerator;
public Region(int dimensionSize) {
_default = State.Dark;
_size = dimensionSize;
}
public void ChangeCoordinateState(int[] coordinates, State state) {
}
//private void AddDimension()
}
}