0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-05-18 19:31:17 +03:00
ParkanPlayground/NResUI/Abstractions/IKeyPressReceiver.cs

17 lines
319 B
C#
Raw Normal View History

2024-11-15 19:06:44 +03:00
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);
}
}