36 lines
735 B
C++
36 lines
735 B
C++
/*
|
|
-----------------------------------------------------------------------------
|
|
File: Judgement.h
|
|
|
|
Desc: A graphic displayed in the Judgement during Dancing.
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
|
|
#ifndef _Judgement_H_
|
|
#define _Judgement_H_
|
|
|
|
|
|
#include "Sprite.h"
|
|
#include "ActorFrame.h"
|
|
#include "Song.h"
|
|
#include "BitmapText.h"
|
|
#include "PrefsManager.h"
|
|
|
|
|
|
class Judgement : public ActorFrame
|
|
{
|
|
public:
|
|
Judgement();
|
|
void SetJudgement( TapNoteScore score );
|
|
virtual void Update( float fDeltaTime );
|
|
virtual void DrawPrimitives();
|
|
|
|
protected:
|
|
Sprite m_sprJudgement;
|
|
float m_fDisplayCountdown;
|
|
};
|
|
|
|
#endif |