C# Class EmptyKeys.UserInterface.Input.MouseStateBase

Implements abstract Mouse State
Show file Open project: EmptyKeys/UI_Engines

Public Methods

Method Description
MouseStateBase ( )

Initializes a new instance of the MouseStateBase class.

SetPosition ( int x, int y ) : void

Sets the position.

Update ( ) : void

Updates this instance.

Method Details

MouseStateBase() public method

Initializes a new instance of the MouseStateBase class.
public MouseStateBase ( )

SetPosition() public abstract method

Sets the position.
public abstract SetPosition ( int x, int y ) : void
x int The x.
y int The y.
return void

Update() public abstract method

Updates this instance.
public abstract Update ( ) : void
return void