Files
itgmania212121/stepmania/src/HoldJudgment.h
T
Chris Danford 31aa613295 Cleanup of theme element names
Renamed ScreenSelectMax* back to their old names
Replaced all hard-coded transitions with TransitionBGAnimations
2003-03-09 00:55:49 +00:00

37 lines
750 B
C++

#ifndef HOLDJudgment_H
#define HOLDJudgment_H
/*
-----------------------------------------------------------------------------
Class: HoldJudgment
Desc: A graphic displayed in the HoldJudgment 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 HoldJudgment : public ActorFrame
{
public:
HoldJudgment();
virtual void Update( float fDeltaTime );
virtual void DrawPrimitives();
void Reset();
void SetHoldJudgment( HoldNoteScore hns );
protected:
Sprite m_sprJudgment;
};
#endif