mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-03 16:57:16 -05:00
12 lines
268 B
C#
12 lines
268 B
C#
namespace OpenDiablo2.Common.Interfaces
|
|
{
|
|
public interface IMouseInfoProvider
|
|
{
|
|
int MouseX { get; }
|
|
int MouseY { get; }
|
|
bool LeftMouseDown { get; }
|
|
bool RightMouseDown { get; }
|
|
bool ReserveMouse { get; set; }
|
|
}
|
|
}
|