mirror of
https://github.com/neogeek23/Life.git
synced 2026-02-04 11:08:23 +00:00
25 lines
572 B
C#
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()
|
|
}
|
|
}
|