namespace MoonWorks.Input
{
public enum ButtonState
/// <summary>
/// Indicates that the input is not pressed.
/// </summary>
Released,
/// Indicates that the input was pressed this frame.
Pressed,
/// Indicates that the input has been held for multiple frames.
Held
}