Files
itgmania212121/stepmania/src/DifficultyMeter.h
T
2003-08-03 00:13:55 +00:00

35 lines
722 B
C++

#ifndef DifficultyMeter_H
#define DifficultyMeter_H
/*
-----------------------------------------------------------------------------
Class: DifficultyMeter
Desc: A meter represention of how hard Steps is.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "BitmapText.h"
#include "PlayerNumber.h"
class Steps;
class Course;
class DifficultyMeter : public BitmapText
{
public:
DifficultyMeter();
void SetFromGameState( PlayerNumber pn );
void SetFromNotes( Steps* pNotes );
void SetFromCourse( Course* pCourse );
void Unset();
private:
void SetMeter( int iMeter );
};
#endif