Files
itgmania212121/stepmania/src/Judgment.h
T

38 lines
749 B
C++
Raw Normal View History

2003-02-17 12:19:42 +00:00
#ifndef Judgment_H
#define Judgment_H
2002-02-24 01:43:11 +00:00
/*
-----------------------------------------------------------------------------
2003-02-17 12:19:42 +00:00
File: Judgment.h
2002-02-24 01:43:11 +00:00
2003-02-17 12:19:42 +00:00
Desc: A graphic displayed in the Judgment during Dancing.
2002-02-24 01:43:11 +00:00
2002-05-19 01:59:48 +00:00
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
2002-08-19 20:02:30 +00:00
Chris Danford
2002-02-24 01:43:11 +00:00
-----------------------------------------------------------------------------
*/
#include "Sprite.h"
#include "ActorFrame.h"
2003-02-16 04:28:17 +00:00
#include "song.h"
2002-02-24 01:43:11 +00:00
#include "BitmapText.h"
2002-07-23 01:41:40 +00:00
#include "PrefsManager.h"
2002-02-24 01:43:11 +00:00
2003-02-17 12:19:42 +00:00
class Judgment : public ActorFrame
2002-02-24 01:43:11 +00:00
{
public:
2003-02-17 12:19:42 +00:00
Judgment();
virtual ~Judgment() { }
2003-03-09 00:55:49 +00:00
2002-02-24 01:43:11 +00:00
virtual void Update( float fDeltaTime );
2002-05-19 01:59:48 +00:00
virtual void DrawPrimitives();
2003-03-09 00:55:49 +00:00
void Reset();
void SetJudgment( TapNoteScore score );
2002-02-24 01:43:11 +00:00
protected:
2003-02-17 12:19:42 +00:00
Sprite m_sprJudgment;
2002-02-24 01:43:11 +00:00
};
#endif