Files
itgmania212121/stepmania/src/Judgment.h
T
Glenn Maynard 5966dd3dcd cleanup
2003-08-01 00:12:44 +00:00

33 lines
640 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;
};
#endif