This commit is contained in:
Glenn Maynard
2005-08-29 01:23:25 +00:00
parent 20b0a0801b
commit 4dffae1f7f
2 changed files with 77 additions and 34 deletions
+14 -7
View File
@@ -3,21 +3,28 @@
#include "ActorFrame.h"
#include "PlayerNumber.h"
#include "BitmapText.h"
class StageStats;
class PlayerStageStats;
class ComboGraph: public ActorFrame
{
public:
~ComboGraph() { Unload(); }
void Load( const CString& sScreen, const CString& sElement, const StageStats &s, const PlayerStageStats &pss );
void Unload();
void TweenOffScreen();
ComboGraph();
~ComboGraph();
void Load( const StageStats &s, const PlayerStageStats &pss );
virtual void LoadFromNode( const CString& sDir, const XNode* pNode );
virtual Actor *Copy() const;
//
// Commands
//
virtual void PushSelf( lua_State *L );
private:
vector<Actor*> m_Sprites;
vector<Actor*> m_Numbers;
Actor *m_pNormalCombo;
Actor *m_pMaxCombo;
BitmapText m_MaxComboText;
};
#endif