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-08-01 00:12:44 +00:00
|
|
|
#include "GameConstantsAndTypes.h"
|
2002-02-24 01:43:11 +00:00
|
|
|
#include "BitmapText.h"
|
|
|
|
|
|
|
|
|
|
|
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();
|
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
|
|
|
};
|
2002-11-16 08:07:38 +00:00
|
|
|
|
|
|
|
|
#endif
|