remove IsValid

This commit is contained in:
Glenn Maynard
2006-09-14 20:35:03 +00:00
parent f1cd95828e
commit af00ab413c
-2
View File
@@ -31,8 +31,6 @@ struct MenuInput
bool operator==( const MenuInput &other ) const { return button == other.button; };
bool operator!=( const MenuInput &other ) const { return !operator==(other); };
inline bool IsValid() const { return button != MenuButton_INVALID; };
};
#endif