C# Class Eryan.Input.PreciseMouse

More precise implementation of Mouse class, for interactions that require more accuraccy, at the expense of randomization.
Inheritance: Mouse
Mostrar archivo Open project: emist/Eryan Class Usage Examples

Public Methods

Method Description
PreciseMouse ( ) : System
atPosition ( int x, int y ) : bool

Check whether the mouse it at the given x and y coordinates

move ( int speed, int x, int y, int randX, int randY, int afterOffset ) : void

Method Details

PreciseMouse() public method

public PreciseMouse ( ) : System
return System

atPosition() public method

Check whether the mouse it at the given x and y coordinates
public atPosition ( int x, int y ) : bool
x int X coordinate to check
y int Y coordinate to check
return bool

move() public method

public move ( int speed, int x, int y, int randX, int randY, int afterOffset ) : void
speed int
x int
y int
randX int
randY int
afterOffset int
return void