Exemplo n.º 1
0
 public Room(int volume, bool stairs, HazmatFlags flags)
 {
     volumeInSqareMeters = volume;
     hazmatFlags         = flags;
     hasStairs           = stairs;
     boxes = new List <Box>();
 }
Exemplo n.º 2
0
 public Room(int volume, bool stairs, HazmatFlags flags)
 {
     volumeInSqareMeters = volume;
     hazmatFlags = flags;
     hasStairs = stairs;
     boxes = new List<Box>();
 }
Exemplo n.º 3
0
 public Box(string name, int volume, HazmatFlags hazmatFlags)
 {
     this.name = name;
     this.volume = volume;
     this.hazmatFlags = hazmatFlags;
 }
Exemplo n.º 4
0
 public Box(string name, int volume, HazmatFlags hazmatFlags)
 {
     this.name        = name;
     this.volume      = volume;
     this.hazmatFlags = hazmatFlags;
 }