Files
itgmania212121/stepmania/src/MusicStatusDisplay.h
T
2002-11-16 08:07:38 +00:00

35 lines
726 B
C++

#ifndef MUSICSTATUSDISPLAY_H
#define MUSICSTATUSDISPLAY_H
/*
-----------------------------------------------------------------------------
Class: MusicStatusDisplay
Desc: A little graphic to the left of the song's text banner in the MusicWheel.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "Sprite.h"
class MusicStatusDisplay : public Sprite
{
public:
MusicStatusDisplay();
enum IconType { none, easy, crown1, crown2, crown3 };
void SetType( IconType type );
virtual void Update( float fDeltaTime );
virtual void DrawPrimitives();
protected:
IconType m_type;
};
#endif