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