Files
itgmania212121/stepmania/src/ScreenGameOver.h
T

32 lines
586 B
C++

/*
-----------------------------------------------------------------------------
Class: ScreenGameOver
Desc: Shows the stage number.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "Screen.h"
#include "Sprite.h"
class ScreenGameOver : public Screen
{
public:
ScreenGameOver();
virtual void HandleScreenMessage( const ScreenMessage SM );
virtual void MenuStart( PlayerNumber pn );
private:
bool m_bClosing;
Sprite m_sprGameOver;
};