#pragma once /* ----------------------------------------------------------------------------- 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; };