Esempio n. 1
0
 public InstantBind(MouseWheelAction wheel, MouseWheelAction alternativeWheel)
     : this()
 {
     Wheel            = wheel;
     Type             = InstantControlType.MouseWheel;
     AlternativeWheel = alternativeWheel;
     AlternativeType  = InstantControlType.MouseWheel;
 }
Esempio n. 2
0
 public InstantBind(MouseButton button, MouseWheelAction alternativeWheel)
     : this()
 {
     Button           = button;
     Type             = InstantControlType.MouseButton;
     AlternativeWheel = alternativeWheel;
     AlternativeType  = InstantControlType.MouseWheel;
 }
Esempio n. 3
0
 public InstantBind(MouseWheelAction wheel, Key alternativeKey)
     : this()
 {
     Wheel           = wheel;
     Type            = InstantControlType.MouseWheel;
     AlternativeKey  = alternativeKey;
     AlternativeType = InstantControlType.Key;
 }
Esempio n. 4
0
 public InstantBind(MouseButton button, MouseButton alternativeButton)
     : this()
 {
     Button            = button;
     Type              = InstantControlType.MouseButton;
     AlternativeButton = alternativeButton;
     AlternativeType   = InstantControlType.MouseButton;
 }
Esempio n. 5
0
 public InstantBind(MouseButton button, Key alternativeKey)
     : this()
 {
     Button          = button;
     Type            = InstantControlType.MouseButton;
     AlternativeKey  = alternativeKey;
     AlternativeType = InstantControlType.Key;
 }
Esempio n. 6
0
 public InstantBind(Key key, MouseWheelAction wheelAction)
     : this()
 {
     Key              = key;
     Type             = InstantControlType.Key;
     AlternativeWheel = wheelAction;
     AlternativeType  = InstantControlType.MouseWheel;
 }
Esempio n. 7
0
 public InstantBind(Key key, MouseButton button)
     : this()
 {
     Key  = key;
     Type = InstantControlType.Key;
     AlternativeButton = button;
     AlternativeType   = InstantControlType.MouseButton;
 }
Esempio n. 8
0
 public InstantBind(Key key, Key alternativeKey)
     : this()
 {
     Key             = key;
     Type            = InstantControlType.Key;
     AlternativeKey  = alternativeKey;
     AlternativeType = InstantControlType.Key;
 }
Esempio n. 9
0
 public InstantBind(MouseWheelAction wheelAction)
     : this()
 {
     Wheel = wheelAction;
     Type  = InstantControlType.MouseWheel;
 }
Esempio n. 10
0
 public InstantBind(MouseButton button)
     : this()
 {
     Button = button;
     Type   = InstantControlType.MouseButton;
 }
Esempio n. 11
0
 public InstantBind(Key key)
     : this()
 {
     Key  = key;
     Type = InstantControlType.Key;
 }