Files
itgmania212121/stepmania/src/HelpDisplay.h
T

38 lines
849 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-17 02:36:53 +00:00
void SetTips( const CStringArray &arrayTips ) { SetTips( arrayTips, arrayTips ); }
void SetTips( const CStringArray &arrayTips, const CStringArray &arrayTipsAlt );
2003-03-30 20:21:20 +00:00
virtual void Update( float fDeltaTime );
protected:
BitmapText m_textTip;
2003-11-17 02:36:53 +00:00
CStringArray m_arrayTips, m_arrayTipsAlt;
2003-03-30 20:21:20 +00:00
int m_iCurTipIndex;
float m_fSecsUntilSwitch;
};
#endif