Files
itgmania212121/stepmania/src/ScreenPlayerOptions.h
T

37 lines
984 B
C++
Raw Normal View History

2003-03-11 08:52:45 +00:00
#ifndef SCREENPLAYEROPTIONS_H
#define SCREENPLAYEROPTIONS_H
2002-05-20 08:59:37 +00:00
/*
-----------------------------------------------------------------------------
2003-03-11 08:52:45 +00:00
Class: ScreenPlayerOptions
2002-05-20 08:59:37 +00:00
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
2003-03-11 08:52:45 +00:00
Chris Danford
2002-05-20 08:59:37 +00:00
-----------------------------------------------------------------------------
*/
#include "ScreenOptionsMaster.h"
2002-05-20 08:59:37 +00:00
class ScreenPlayerOptions : public ScreenOptionsMaster
2002-05-20 08:59:37 +00:00
{
public:
2003-09-27 22:30:51 +00:00
ScreenPlayerOptions( CString sName );
2002-05-20 08:59:37 +00:00
2003-03-11 08:52:45 +00:00
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 );
2002-05-20 08:59:37 +00:00
private:
void GoToNextState();
void GoToPrevState();
2003-06-16 17:28:58 +00:00
bool m_bAcceptedChoices;
bool m_bGoToOptions;
2003-09-30 05:25:22 +00:00
bool m_bAskOptionsMessage;
2003-06-16 17:28:58 +00:00
Sprite m_sprOptionsMessage;
2002-05-20 08:59:37 +00:00
};
2002-11-16 20:21:00 +00:00
#endif