Interface IKeyboardDevice
A keyboard device
public interface IKeyboardDevice : IInputDevice
- Inherited Members
- Extension Methods
Properties
DownKeys
List of keys that are currently down on this keyboard
IReadOnlySet<Keys> DownKeys { get; }
Property Value
PressedKeys
The keys that have been pressed since the last frame
IReadOnlySet<Keys> PressedKeys { get; }
Property Value
ReleasedKeys
The keys that have been released since the last frame
IReadOnlySet<Keys> ReleasedKeys { get; }