19 lines
248 B
C++
19 lines
248 B
C++
#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:
|
|
ScreenExit( CString sName );
|
|
void Update( float fDelta );
|
|
};
|
|
|
|
|
|
#endif
|