Files
itgmania212121/stepmania/src/StageBox.h
T
2002-11-16 08:07:38 +00:00

37 lines
719 B
C++

#ifndef STAGEBOX_H
#define STAGEBOX_H
/*
-----------------------------------------------------------------------------
Class: StageBox
Desc: bonus meters and max combo number.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "ActorFrame.h"
#include "Sprite.h"
#include "BitmapText.h"
#include "Quad.h"
#include "GameConstantsAndTypes.h"
class StageBox : public ActorFrame
{
public:
StageBox();
void SetStageInfo( PlayerNumber p, int iNumStagesCompleted );
protected:
Sprite m_sprBox;
BitmapText m_textTime;
BitmapText m_textNumber;
BitmapText m_textST;
};
#endif