Files
itgmania212121/stepmania/src/ScreenReloadSongs.h
T
2004-02-21 01:53:10 +00:00

22 lines
369 B
C++

#ifndef SCREEN_RELOAD_SONGS_H
#define SCREEN_RELOAD_SONGS_H
#include "Screen.h"
#include "BitmapText.h"
class LoadingWindow;
class ScreenReloadSongs: public Screen
{
public:
ScreenReloadSongs( CString sClassName );
~ScreenReloadSongs();
void Update( float fDeltaTime );
private:
int m_iUpdates;
LoadingWindow *m_LoadingWindow;
BitmapText m_Loading;
};
#endif