namespace MoonWorks.Input { internal enum ButtonStatus { /// /// 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 } }