Files
itgmania212121/stepmania/src/ScreenOptionsMenu.h
T
Thad Ward e11ad92561 Make MenuLeft do a MenuUp and MenuRight do a MenuDown.
This removes that assumption of menu buttons behind the coin door.
2003-08-29 08:44:07 +00:00

34 lines
707 B
C++

/*
-----------------------------------------------------------------------------
Class: ScreenOptionsMenu
Desc: Select a theme and announcer.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "Screen.h"
#include "ScreenOptions.h"
class ScreenOptionsMenu : public ScreenOptions
{
public:
ScreenOptionsMenu();
protected:
void MenuStart( PlayerNumber pn );
private:
void ImportOptions();
void ExportOptions();
void GoToNextState();
void GoToPrevState();
void MenuLeft( PlayerNumber pn ) { MenuUp(pn); }
void MenuRight( PlayerNumber pn ) { MenuDown(pn); }
};