コード例 #1
0
ファイル: Cell.cs プロジェクト: bittercoder/Conways
 public Cell(CellList list, Point point, CellState state)
 {
     Point = point;
     State = state;
     List = list;
 }
コード例 #2
0
 public AddNewCellToList(Point position, CellState state)
 {
     _position = position;
     _state = state;
 }