Files
itgmania212121/stepmania/src/ScreenStage.h
T

30 lines
545 B
C++
Raw Normal View History

2002-05-20 08:59:37 +00:00
/*
-----------------------------------------------------------------------------
Class: ScreenStage
Desc: Shows the stage number.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "Screen.h"
2002-05-28 20:01:22 +00:00
#include "BitmapText.h"
2002-05-20 08:59:37 +00:00
class ScreenStage : public Screen
{
public:
ScreenStage();
virtual void HandleScreenMessage( const ScreenMessage SM );
private:
bool m_bTryExtraStage;
2002-05-28 20:01:22 +00:00
BitmapText m_textStage;
2002-05-20 08:59:37 +00:00
};