Example #1
0
 public Place(Position position, bool liveOrDeadCell)
 {
     PlacePosition = position;
     if (liveOrDeadCell)
     {
         PlacedCell = new LiveCell();
     }
     else
     {
         PlacedCell = new DeadCell();
     }
 }
Example #2
0
 public void InsertDeadCell()
 {
     PlacedCell = new DeadCell();
 }