mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-10-28 04:14:05 +03:00
17 lines
319 B
C#
17 lines
319 B
C#
|
|
using Silk.NET.Input;
|
|||
|
|
|
|||
|
|
namespace NResUI.Abstractions
|
|||
|
|
{
|
|||
|
|
public interface IKeyPressReceiver
|
|||
|
|
{
|
|||
|
|
void OnKeyPressed(Key key);
|
|||
|
|
}
|
|||
|
|
public interface IKeyReleaseReceiver
|
|||
|
|
{
|
|||
|
|
void OnKeyReleased(Key key);
|
|||
|
|
}
|
|||
|
|
public interface IKeyDownReceiver
|
|||
|
|
{
|
|||
|
|
void OnKeyDown(Key key);
|
|||
|
|
}
|
|||
|
|
}
|