Files
itgmania212121/stepmania/src/DifficultyDisplay.h
T

33 lines
699 B
C++
Raw Normal View History

2003-06-18 07:03:51 +00:00
#ifndef DIFFICULTY_DISPLAY_H
#define DIFFICULTY_DISPLAY_H
/*
-----------------------------------------------------------------------
File: DifficultyDisplay.h
Desc: A graphic displayed on the screen during dance
Copyright (c) 2003 by the person(s) listed below. All rights reserved.
Steven Towle
-----------------------------------------------------------------------
*/
#include "GameConstantsAndTypes.h"
#include "Sprite.h"
#include "ActorFrame.h"
class Song;
class DifficultyDisplay : public ActorFrame
{
public:
DifficultyDisplay();
2003-08-07 06:16:17 +00:00
void SetDifficulties( const Song* pSong, StepsType curType );
2003-06-30 06:48:14 +00:00
void UnsetDifficulties();
2003-06-18 07:03:51 +00:00
protected:
Sprite m_difficulty[NUM_DIFFICULTIES];
};
#endif