cleanup
This commit is contained in:
Glenn Maynard
2005-10-07 03:07:17 +00:00
parent 1b319be859
commit 952270b060
2 changed files with 9 additions and 3 deletions
+4
View File
@@ -13,6 +13,10 @@
* for a sound to stop. */
REGISTER_SCREEN_CLASS( ScreenExit );
ScreenExit::ScreenExit( CString sName ): Screen( sName )
{
}
void ScreenExit::Init()
{
m_Exited = false;
+5 -3
View File
@@ -6,12 +6,14 @@
class ScreenExit: public Screen
{
bool m_Exited;
RageTimer m_ShutdownTimer;
public:
ScreenExit( CString sName );
void Init();
void Update( float fDelta );
private:
bool m_Exited;
RageTimer m_ShutdownTimer;
};
#endif