31 lines
571 B
C++
31 lines
571 B
C++
/*
|
|
-----------------------------------------------------------------------------
|
|
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"
|
|
#include "BitmapText.h"
|
|
|
|
|
|
class ScreenStage : public Screen
|
|
{
|
|
public:
|
|
ScreenStage();
|
|
|
|
virtual void HandleScreenMessage( const ScreenMessage SM );
|
|
|
|
private:
|
|
bool m_bTryExtraStage;
|
|
|
|
BitmapText m_textStage;
|
|
Screen* m_pNextScreen;
|
|
};
|
|
|
|
|