Example #1
0
 private void Initialize(GridPoint position, DonutMazeCellType type, string portalLetter)
 {
     Position     = position;
     Type         = type;
     PortalLetter = portalLetter;
 }
Example #2
0
 public DonutMazeCell(GridPoint position, DonutMazeCellType type, string portalLetter)
 {
     Initialize(position, type, portalLetter);
 }