MoonWorks/src/Input/ButtonStatus.cs

19 lines
364 B
C#
Raw Normal View History

2022-02-23 05:14:32 +00:00
namespace MoonWorks.Input
2021-01-22 22:41:34 +00:00
{
2022-02-23 05:14:32 +00:00
internal 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
}
2021-01-22 22:41:34 +00:00
}