Esempio n. 1
0
 public Lever(Direction direction, Switch.SwitchAction action)
 {
     this.direction = direction;
     this.action = action;
 }
Esempio n. 2
0
 public Lever(Switch.SwitchAction action)
 {
     this.direction = Direction.Left;
     this.action = action;
 }
Esempio n. 3
0
 public InvisibleSwitch(Switch.SwitchAction action)
 {
     this.action = action;
 }