2003-09-27 00:14:38 +00:00
|
|
|
#ifndef SCREEN_EXIT_H
|
|
|
|
|
#define SCREEN_EXIT_H
|
|
|
|
|
|
|
|
|
|
#include "Screen.h"
|
|
|
|
|
#include "RageTimer.h"
|
|
|
|
|
|
|
|
|
|
class ScreenExit: public Screen
|
|
|
|
|
{
|
|
|
|
|
bool m_Exited;
|
|
|
|
|
RageTimer m_ShutdownTimer;
|
|
|
|
|
|
|
|
|
|
public:
|
2003-09-27 22:30:51 +00:00
|
|
|
ScreenExit( CString sName );
|
2003-09-27 00:14:38 +00:00
|
|
|
void Update( float fDelta );
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|