Files
itgmania212121/stepmania/src/DifficultyMeter.h
T

35 lines
722 B
C++
Raw Normal View History

2003-03-09 00:55:49 +00:00
#ifndef DifficultyMeter_H
#define DifficultyMeter_H
2002-01-16 10:01:32 +00:00
/*
-----------------------------------------------------------------------------
2003-03-09 00:55:49 +00:00
Class: DifficultyMeter
2002-01-16 10:01:32 +00:00
2003-08-03 00:13:55 +00:00
Desc: A meter represention of how hard Steps is.
2002-01-16 10:01:32 +00:00
2002-05-19 01:59:48 +00:00
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
2002-01-16 10:01:32 +00:00
-----------------------------------------------------------------------------
*/
#include "BitmapText.h"
2003-07-21 22:38:41 +00:00
#include "PlayerNumber.h"
2003-08-03 00:13:55 +00:00
class Steps;
2003-07-21 22:38:41 +00:00
class Course;
2002-01-16 10:01:32 +00:00
2003-03-09 00:55:49 +00:00
class DifficultyMeter : public BitmapText
2002-01-16 10:01:32 +00:00
{
public:
2003-03-09 00:55:49 +00:00
DifficultyMeter();
2002-01-16 10:01:32 +00:00
2003-07-21 22:38:41 +00:00
void SetFromGameState( PlayerNumber pn );
2003-08-03 00:13:55 +00:00
void SetFromNotes( Steps* pNotes );
2003-07-21 22:38:41 +00:00
void SetFromCourse( Course* pCourse );
void Unset();
2002-01-16 10:01:32 +00:00
private:
2003-07-21 22:38:41 +00:00
void SetMeter( int iMeter );
2002-01-16 10:01:32 +00:00
};
#endif