remove empty wrapper class MenuInput

This commit is contained in:
Glenn Maynard
2006-09-14 20:55:32 +00:00
parent c7dfb9f2ec
commit ed228615a3
2 changed files with 0 additions and 12 deletions
-11
View File
@@ -22,17 +22,6 @@ enum MenuButton
const RString &MenuButtonToString( MenuButton mb );
const RString &MenuButtonToLocalizedString( MenuButton mb );
struct MenuInput
{
MenuInput() { button = MenuButton_INVALID; }
MenuInput( MenuButton b ) { button = b; }
MenuButton button;
bool operator==( const MenuInput &other ) const { return button == other.button; };
bool operator!=( const MenuInput &other ) const { return !operator==(other); };
};
#endif
/*