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