This commit is contained in:
Glenn Maynard
2003-08-01 00:12:44 +00:00
parent a9774592e2
commit 5966dd3dcd
2 changed files with 7 additions and 22 deletions
+6 -16
View File
@@ -18,12 +18,12 @@
#include "ThemeManager.h"
CachedThemeMetric MARVELOUS_COMMAND ("Judgment","MarvelousCommand");
CachedThemeMetric PERFECT_COMMAND ("Judgment","PerfectCommand");
CachedThemeMetric GREAT_COMMAND ("Judgment","GreatCommand");
CachedThemeMetric GOOD_COMMAND ("Judgment","GoodCommand");
CachedThemeMetric BOO_COMMAND ("Judgment","BooCommand");
CachedThemeMetric MISS_COMMAND ("Judgment","MissCommand");
static CachedThemeMetric MARVELOUS_COMMAND ("Judgment","MarvelousCommand");
static CachedThemeMetric PERFECT_COMMAND ("Judgment","PerfectCommand");
static CachedThemeMetric GREAT_COMMAND ("Judgment","GreatCommand");
static CachedThemeMetric GOOD_COMMAND ("Judgment","GoodCommand");
static CachedThemeMetric BOO_COMMAND ("Judgment","BooCommand");
static CachedThemeMetric MISS_COMMAND ("Judgment","MissCommand");
Judgment::Judgment()
@@ -41,16 +41,6 @@ Judgment::Judgment()
this->AddChild( &m_sprJudgment );
}
void Judgment::Update( float fDeltaTime )
{
ActorFrame::Update( fDeltaTime );
}
void Judgment::DrawPrimitives()
{
ActorFrame::DrawPrimitives();
}
void Judgment::Reset()
{
+1 -6
View File
@@ -13,19 +13,14 @@
#include "Sprite.h"
#include "ActorFrame.h"
#include "song.h"
#include "GameConstantsAndTypes.h"
#include "BitmapText.h"
#include "PrefsManager.h"
class Judgment : public ActorFrame
{
public:
Judgment();
virtual ~Judgment() { }
virtual void Update( float fDeltaTime );
virtual void DrawPrimitives();
void Reset();
void SetJudgment( TapNoteScore score );