mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-23 04:52:22 +00:00
15 lines
329 B
C#
15 lines
329 B
C#
using Lantean.QBTMud.Models;
|
|
|
|
namespace Lantean.QBTMud.Services
|
|
{
|
|
public interface IKeyboardService
|
|
{
|
|
Task Focus();
|
|
|
|
Task UnFocus();
|
|
|
|
Task RegisterKeypressEvent(KeyboardEvent criteria, Func<KeyboardEvent, Task> onKeyPress);
|
|
|
|
Task UnregisterKeypressEvent(KeyboardEvent criteria);
|
|
}
|
|
} |