MoonWorks/src/Input/ButtonState.cs

19 lines
433 B
C#
Raw Normal View History

2021-01-19 07:29:07 +00:00
namespace MoonWorks
{
public enum ButtonState
{
/// <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
}
}