public class GameState | |
{ | |
public GameState(int size) | |
{ | |
Cells = new CellState[size, size]; | |
Size = size; | |
} | |
public int Size { get; } | |
public CellState[,] Cells { get; set; } | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment