public void OpenDoor() { Cordinate cor = new Cordinate(9, 5); MazeCell cell = GetCell(cor); cell.DeleteEdge(MazeDirection.East); isDoorOpen = true; }