mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
13 lines
396 B
C#
13 lines
396 B
C#
namespace Cosmos.HAL
|
|
{
|
|
/// <summary>
|
|
/// The base class for mouse implementations.
|
|
/// </summary>
|
|
public abstract class MouseBase : Device
|
|
{
|
|
public abstract void Initialize();
|
|
|
|
public delegate void MouseChangedEventHandler(int aDeltaX, int aDeltaY, int aMouseState, int aScrollWheel);
|
|
public MouseChangedEventHandler OnMouseChanged;
|
|
}
|
|
}
|