move MenuElements into a base ScreenWithMenuElements so that metrics can be overridden using the Fallback mechanism

This commit is contained in:
Chris Danford
2004-05-01 23:19:33 +00:00
parent 1d2d1927a6
commit df5cd5e813
57 changed files with 262 additions and 493 deletions
+2 -5
View File
@@ -9,16 +9,15 @@
-----------------------------------------------------------------------------
*/
#include "Screen.h"
#include "ScreenWithMenuElements.h"
#include "Sprite.h"
#include "BitmapText.h"
#include "PrefsManager.h"
#include "InputMapper.h"
#include "MenuElements.h"
#include "RageInputDevice.h"
class ScreenTestInput : public Screen
class ScreenTestInput : public ScreenWithMenuElements
{
public:
ScreenTestInput( CString sName );
@@ -34,7 +33,5 @@ public:
private:
BitmapText m_textInputs;
MenuElements m_Menu;
};