Example #1
0
 public void AddFloor(FloorLayout floor)
 {
     if (!floors.Contains(floor))
     {
         floors.Add(floor);
     }
 }
Example #2
0
 public FloorExplorer(int floor)
 {
     this.floor = floor;
     this.layout = Settings.GetSingleton().GetFloor(floor);
     InitializeComponent();
 }