Files
itgmania212121/stepmania/src/ScreenPlayerOptions.h
T
2003-03-30 18:12:57 +00:00

39 lines
906 B
C++

#ifndef SCREENPLAYEROPTIONS_H
#define SCREENPLAYEROPTIONS_H
/*
-----------------------------------------------------------------------------
Class: ScreenPlayerOptions
Desc: Select a song.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "ScreenOptions.h"
#include "PrefsManager.h"
class ScreenPlayerOptions : public ScreenOptions
{
public:
ScreenPlayerOptions();
virtual void Update( float fDelta );
virtual void DrawPrimitives();
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
virtual void HandleScreenMessage( const ScreenMessage SM );
private:
void ImportOptions();
void ExportOptions();
void GoToNextState();
void GoToPrevState();
};
#endif