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
30 lines
606 B
C++
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
|