31aa613295
Renamed ScreenSelectMax* back to their old names Replaced all hard-coded transitions with TransitionBGAnimations
37 lines
750 B
C++
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
|