mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-05-18 19:31:17 +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);
|
|
}
|
|
} |