Files
itgmania212121/stepmania/src/ScreenSongOptions.h
T

30 lines
621 B
C++
Raw Normal View History

2002-05-20 08:59:37 +00:00
/*
-----------------------------------------------------------------------------
File: ScreenSongOptions.h
Desc: Select a song.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
-----------------------------------------------------------------------------
*/
2002-09-11 05:45:49 +00:00
#ifndef SCREEN_SONG_OPTIONS_H
#define SCREEN_SONG_OPTIONS_H
2002-05-20 08:59:37 +00:00
#include "ScreenOptions.h"
class ScreenSongOptions : public ScreenOptions
{
public:
2003-09-27 22:30:51 +00:00
ScreenSongOptions( CString sName );
2003-04-21 22:36:45 +00:00
static CString GetNextScreen();
2002-05-20 08:59:37 +00:00
private:
void ImportOptions();
void ExportOptions();
void GoToNextState();
void GoToPrevState();
};
2002-11-16 20:21:00 +00:00
#endif