public Device(string name)
     : base(name)
 {
     Door = new Door(this, "The Stupid Door");
 }
Exemple #2
0
 public DoorLockedState(Door door)
 {
     Initialize();
     this.Door = door;
 }