Example #1
0
 internal ButtonInfo(g.InputType _inputTypeSingle, g.InputType _inputTypeDouble)
 {
     inputTypeSingle     = _inputTypeSingle;
     inputTypeDouble     = _inputTypeDouble;
     startingCoordinates = new Point();
     endingCoordinates   = new Point();
 }
Example #2
0
 internal ClickInfo(g.InputType _clickType, Point _startingCoordinates, Point _endingCoordinates)
 {
     ClickType           = _clickType;
     StartingCoordinates = _startingCoordinates;
     EndingCoordinates   = _endingCoordinates;
 }
Example #3
0
 public RightClickInfo(g.InputType _inputTypeSingle, g.InputType _inputTypeDouble) : base(_inputTypeSingle, _inputTypeDouble)
 {
 }