2002-05-27 08:23:27 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
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"
|
2002-09-29 05:06:18 +00:00
|
|
|
#include "BGAnimation.h"
|
2003-04-13 01:09:19 +00:00
|
|
|
#include "Transition.h"
|
2002-05-27 08:23:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class ScreenGameOver : public Screen
|
|
|
|
|
{
|
|
|
|
|
public:
|
2003-09-27 22:30:51 +00:00
|
|
|
ScreenGameOver( CString sName );
|
2002-05-27 08:23:27 +00:00
|
|
|
|
|
|
|
|
virtual void HandleScreenMessage( const ScreenMessage SM );
|
|
|
|
|
|
2002-09-04 03:49:08 +00:00
|
|
|
virtual void MenuStart( PlayerNumber pn );
|
2002-05-27 08:23:27 +00:00
|
|
|
|
2002-05-28 20:01:22 +00:00
|
|
|
private:
|
2002-07-23 01:41:40 +00:00
|
|
|
|
2003-04-13 01:09:19 +00:00
|
|
|
Transition m_In;
|
|
|
|
|
Transition m_Out;
|
2003-04-12 18:34:05 +00:00
|
|
|
BGAnimation m_Background;
|
2002-05-27 08:23:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|