Files
itgmania212121/stepmania/src/ScreenExit.h
T
2003-09-27 22:30:51 +00:00

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