Ejemplo n.º 1
0
 public KeyboardKeys(
     VirtualInput.OverlapBehaviors overlapBehavior,
     KeyCode negative,
     KeyCode positive)
 {
     this.OverlapBehavior = overlapBehavior;
     this.Negative        = negative;
     this.Positive        = positive;
 }
Ejemplo n.º 2
0
 public KeyboardKeys(
     VirtualInput.OverlapBehaviors overlapBehavior,
     KeyCode left,
     KeyCode right,
     KeyCode up,
     KeyCode down)
 {
     this.OverlapBehavior = overlapBehavior;
     this.Left            = left;
     this.Right           = right;
     this.Up   = up;
     this.Down = down;
 }