forked from MoonsideGames/MoonWorks
19 lines
362 B
C#
19 lines
362 B
C#
namespace MoonWorks.Input
|
|
{
|
|
public enum ButtonStatus
|
|
{
|
|
/// <summary>
|
|
/// Indicates that the input is not pressed.
|
|
/// </summary>
|
|
Released,
|
|
/// <summary>
|
|
/// Indicates that the input was pressed this frame.
|
|
/// </summary>
|
|
Pressed,
|
|
/// <summary>
|
|
/// Indicates that the input has been held for multiple frames.
|
|
/// </summary>
|
|
Held
|
|
}
|
|
}
|