I'd prefer "Song.h", but it's not worth losing history for, and SF will choke on that rename anyway.
32 lines
609 B
C++
32 lines
609 B
C++
#ifndef FOOTMETER_H
|
|
#define FOOTMETER_H
|
|
/*
|
|
-----------------------------------------------------------------------------
|
|
Class: FootMeter
|
|
|
|
Desc: A meter represention of how hard Notes is.
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
Chris Danford
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "Sprite.h"
|
|
#include "song.h"
|
|
#include "BitmapText.h"
|
|
#include "PrefsManager.h"
|
|
|
|
|
|
class FootMeter : public BitmapText
|
|
{
|
|
public:
|
|
FootMeter();
|
|
|
|
void SetFromNotes( Notes* pNotes );
|
|
|
|
private:
|
|
void SetNumFeet( int iNumFeet );
|
|
};
|
|
|
|
#endif
|