[loading window] Trying to clean up the in game song reloading.

This commit is contained in:
Henrik Andersson
2011-06-05 01:39:15 +02:00
parent 6c7ebfafe8
commit 9721c0d66a
6 changed files with 76 additions and 51 deletions
+19
View File
@@ -0,0 +1,19 @@
#include "arch/LoadingWindow/LoadingWindow.h"
#include "BitmapText.h"
#include "RageTimer.h"
#include "global.h"
#include "ActorFrame.h"
class InGameLoadingWindow: public LoadingWindow, public ActorFrame {
public:
InGameLoadingWindow();
~InGameLoadingWindow();
void SetText( RString str );
private:
RageTimer m_LastDraw;
BitmapText m_Text;
};