Files
itgmania212121/stepmania/src/ScreenSongOptions.h
T
Glenn Maynard 5ad3b0b786 Readd optional song menu.
Three options:
  yes, to go directly to it without asking.  This is faster for people who use
the song options menu frequently
  no, to skip it completely; probably useful for coin mode where the song
opts menu may be inappropriate
  ask, to ask, for people (like me) who use that menu very infrequently
but still want it available
2003-04-21 22:36:45 +00:00

30 lines
606 B
C++

/*
-----------------------------------------------------------------------------
File: ScreenSongOptions.h
Desc: Select a song.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
-----------------------------------------------------------------------------
*/
#ifndef SCREEN_SONG_OPTIONS_H
#define SCREEN_SONG_OPTIONS_H
#include "ScreenOptions.h"
class ScreenSongOptions : public ScreenOptions
{
public:
ScreenSongOptions();
static CString GetNextScreen();
private:
void ImportOptions();
void ExportOptions();
void GoToNextState();
void GoToPrevState();
};
#endif