Files
itgmania212121/stepmania/src/ScreenPlayerOptions.h
T

33 lines
587 B
C++
Raw Normal View History

2002-05-20 08:59:37 +00:00
/*
-----------------------------------------------------------------------------
File: ScreenPlayerOptions.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_PLAYER_OPTIONS_H
#define SCREEN_PLAYER_OPTIONS_H
2002-05-20 08:59:37 +00:00
#include "ScreenOptions.h"
class ScreenPlayerOptions : public ScreenOptions
{
public:
ScreenPlayerOptions();
private:
void ImportOptions();
void ExportOptions();
void GoToNextState();
void GoToPrevState();
};
2002-11-16 20:21:00 +00:00
#endif