コード例 #1
0
 public Cell(CellState state) : this(state, new List <Cell>())
 {
 }
コード例 #2
0
 public Cell(CellState state, List <Cell> neighbors)
 {
     State     = state;
     Neighbors = neighbors;
 }