mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-19 10:56:07 -05:00
a3208e26f2
Initial Character Panel Work
13 lines
307 B
C#
13 lines
307 B
C#
namespace OpenDiablo2.Common.Interfaces
|
|
{
|
|
public interface IMouseInfoProvider
|
|
{
|
|
int MouseX { get; }
|
|
int MouseY { get; }
|
|
bool LeftMouseDown { get; }
|
|
bool LeftMousePressed { get; }
|
|
bool RightMouseDown { get; }
|
|
bool ReserveMouse { get; set; }
|
|
}
|
|
}
|