Files
itgmania212121/stepmania/src/Judgment.h
T
2003-11-29 11:17:13 +00:00

34 lines
657 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 "GameConstantsAndTypes.h"
#include "BitmapText.h"
class Judgment : public ActorFrame
{
public:
Judgment();
void Reset();
void SetJudgment( TapNoteScore score );
protected:
Sprite m_sprJudgment;
int m_iCount;
};
#endif