Files
itgmania212121/stepmania/src/Judgment.h
T
Chris Danford 31aa613295 Cleanup of theme element names
Renamed ScreenSelectMax* back to their old names
Replaced all hard-coded transitions with TransitionBGAnimations
2003-03-09 00:55:49 +00:00

38 lines
749 B
C++

#ifndef Judgment_H
#define Judgment_H
/*
-----------------------------------------------------------------------------
File: Judgment.h
Desc: A graphic displayed in the Judgment during Dancing.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "Sprite.h"
#include "ActorFrame.h"
#include "song.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 );
protected:
Sprite m_sprJudgment;
};
#endif