Files
itgmania212121/stepmania/src/Judgment.h
T
Chris Danford 032bf447f3 per-player NoteSkin
NoteSkin selected on PlayerOptions screen
tweaked judgement appearance
marvelous judgement glow
ActorEffect cleanup
2003-02-17 12:19:42 +00:00

37 lines
808 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 "song.h"
#include "BitmapText.h"
#include "PrefsManager.h"
class Judgment : public ActorFrame
{
public:
Judgment();
virtual ~Judgment() { }
void SetJudgment( TapNoteScore score );
virtual void Update( float fDeltaTime );
virtual void DrawPrimitives();
virtual void Reset() { m_fShowCountdown = .0f; }
protected:
Sprite m_sprJudgment;
float m_fShowCountdown;
};
#endif