namespace MoonWorks.Input { /// /// A dummy button that can never be pressed. Used for the dummy gamepad. /// public class EmptyButton : VirtualButton { internal override bool CheckPressed() { return false; } } }