2002-02-24 01:43:11 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
File: HoldJudgement.h
|
|
|
|
|
|
|
|
|
|
Desc: A graphic displayed in the HoldJudgement during Dancing.
|
|
|
|
|
|
2002-04-16 17:31:00 +00:00
|
|
|
Copyright (c) 2001-2002 by the persons listed below. All rights reserved.
|
2002-02-24 01:43:11 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _HoldJudgement_H_
|
|
|
|
|
#define _HoldJudgement_H_
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "Sprite.h"
|
|
|
|
|
#include "ActorFrame.h"
|
|
|
|
|
#include "Song.h"
|
|
|
|
|
#include "BitmapText.h"
|
|
|
|
|
#include "ThemeManager.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class HoldJudgement : public ActorFrame
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
HoldJudgement();
|
2002-03-19 07:09:49 +00:00
|
|
|
void SetHoldJudgement( HoldNoteResult result );
|
2002-02-24 01:43:11 +00:00
|
|
|
virtual void Update( float fDeltaTime );
|
|
|
|
|
virtual void RenderPrimitives();
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
Sprite m_sprJudgement;
|
|
|
|
|
float m_fDisplayCountdown;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|