Files
itgmania212121/stepmania/src/DifficultyRating.h
T

36 lines
907 B
C++
Raw Normal View History

#ifndef DIFFICULTYRATING_H
#define DIFFICULTYRATING_H
/*
-----------------------------------------------------------------------------
Class: DifficultyRating
Desc: Displays a whole bunch of graphics, either left aligned or center aligned.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
2003-12-14 08:11:05 +00:00
Frieza
-----------------------------------------------------------------------------
*/
#include "ActorFrame.h"
#include "Banner.h"
#include "Sprite.h"
#include "ThemeManager.h"
class DifficultyRating : public ActorFrame
{
public:
DifficultyRating();
~DifficultyRating();
void SetDifficulty(int Difficulty);
void SetOrientation(int Orientation);
virtual void DrawPrimitives();
2003-10-06 22:20:25 +00:00
virtual void Update(float fDeltaTime);
private:
int iMaxElements;
int iOrientation;
int iCurrentDifficulty;
vector<Sprite*> m_apSprites; // stores the list of elements (left to right)
};
2003-02-16 04:56:36 +00:00
#endif