2002-11-16 08:07:38 +00:00
|
|
|
#ifndef FOOTMETER_H
|
|
|
|
|
#define FOOTMETER_H
|
2002-01-16 10:01:32 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
2002-05-19 01:59:48 +00:00
|
|
|
Class: FootMeter
|
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 "Sprite.h"
|
|
|
|
|
#include "Song.h"
|
|
|
|
|
#include "BitmapText.h"
|
2002-07-23 01:41:40 +00:00
|
|
|
#include "PrefsManager.h"
|
2002-01-16 10:01:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class FootMeter : public BitmapText
|
|
|
|
|
{
|
|
|
|
|
public:
|
2002-05-19 01:59:48 +00:00
|
|
|
FootMeter();
|
2002-01-16 10:01:32 +00:00
|
|
|
|
2002-05-19 01:59:48 +00:00
|
|
|
void SetFromNotes( Notes* pNotes );
|
2002-01-16 10:01:32 +00:00
|
|
|
|
|
|
|
|
private:
|
2002-06-27 17:49:10 +00:00
|
|
|
void SetNumFeet( int iNumFeet );
|
2002-01-16 10:01:32 +00:00
|
|
|
};
|
2002-11-16 08:07:38 +00:00
|
|
|
|
|
|
|
|
#endif
|