Files
itgmania212121/stepmania/src/DifficultyMeter.h
T

30 lines
584 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
2002-05-27 08:23:27 +00:00
Desc: A meter represention of how hard Notes 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-03-26 23:08:05 +00:00
class Notes;
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
2002-05-19 01:59:48 +00:00
void SetFromNotes( Notes* pNotes );
void SetMeter( int iMeter );
2002-01-16 10:01:32 +00:00
private:
};
#endif