Beispiel #1
0
 public Sector(Sector s)
 {
     maxOrbs = s.maxOrbs;
     maxBlueOrbs = s.maxBlueOrbs;
     maxRedOrbs = s.maxRedOrbs;
     //currentOrbs = s.currentOrbs;
     //currentBlueOrbs = s.currentBlueOrbs;
     //currentRedOrbs = s.currentRedOrbs;
     id = s.id;
     center = s.center;
     roomList = new List<Room>();
     foreach (Room r in s.roomList)
     {
         roomList.Add(new Room(r));
     }
 }
Beispiel #2
0
 public Sr(Sector s)
 {
     cbo = s.currentBlueOrbs;
     cro = s.currentRedOrbs;
     co = s.currentOrbs;
 }