Files
itgmania212121/stepmania/src/HelpDisplay.h
T

37 lines
715 B
C++
Raw Normal View History

2003-03-30 20:21:20 +00:00
#ifndef HelpDisplay_H
#define HelpDisplay_H
/*
-----------------------------------------------------------------------------
Class: HelpDisplay
Desc: A BitmapText that cycles through messages.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "ActorFrame.h"
#include "BitmapText.h"
class HelpDisplay : public ActorFrame
{
public:
HelpDisplay();
2003-11-17 01:39:34 +00:00
void Load();
2003-11-07 20:43:03 +00:00
void SetTips( const CStringArray &arrayTips );
2003-03-30 20:21:20 +00:00
virtual void Update( float fDeltaTime );
protected:
BitmapText m_textTip;
CStringArray m_arrayTips;
int m_iCurTipIndex;
float m_fSecsUntilSwitch;
};
#endif