add progress update

This commit is contained in:
Glenn Maynard
2004-02-21 01:53:10 +00:00
parent 656f9f915e
commit bb8d732a90
2 changed files with 64 additions and 7 deletions
+8 -2
View File
@@ -2,14 +2,20 @@
#define SCREEN_RELOAD_SONGS_H
#include "Screen.h"
#include "BitmapText.h"
class LoadingWindow;
class ScreenReloadSongs: public Screen
{
bool m_FirstUpdate;
public:
ScreenReloadSongs( CString sClassName );
~ScreenReloadSongs();
void Update( float fDeltaTime );
private:
int m_iUpdates;
LoadingWindow *m_LoadingWindow;
BitmapText m_Loading;
};
#endif