mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
21 lines
445 B
C#
21 lines
445 B
C#
namespace Robust.Client.Input
|
|
{
|
|
public enum KeyEventType : byte
|
|
{
|
|
/// <summary>
|
|
/// This key is pressed down.
|
|
/// </summary>
|
|
Down,
|
|
|
|
/// <summary>
|
|
/// This key was repeated by the operating system while already being pressed down.
|
|
/// </summary>
|
|
Repeat,
|
|
|
|
/// <summary>
|
|
/// This key has been released.
|
|
/// </summary>
|
|
Up
|
|
}
|
|
}
|