MoonWorks/src/Input/ButtonStatus.cs

19 lines
362 B
C#
Raw Permalink Normal View History

2022-02-23 05:14:32 +00:00
namespace MoonWorks.Input
2021-01-22 22:41:34 +00:00
{
2022-03-07 18:54:52 +00:00
public enum ButtonStatus
2022-02-23 05:14:32 +00:00
{
/// <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
}