mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-03 16:57:16 -05:00
11 lines
250 B
C#
11 lines
250 B
C#
namespace OpenDiablo2.Common.Interfaces
|
|
{
|
|
public delegate void OnKeyPressed(char charcode);
|
|
|
|
public interface IKeyboardInfoProvider
|
|
{
|
|
OnKeyPressed KeyPressCallback { get; set; }
|
|
bool KeyIsPressed(int scancode);
|
|
}
|
|
}
|