rename TipDisplay -> HelpDisplay

This commit is contained in:
Chris Danford
2003-03-30 20:21:20 +00:00
parent c29e008586
commit 2e2d7104ea
2 changed files with 97 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
#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 "Sprite.h"
#include "song.h"
#include "ActorFrame.h"
#include "BitmapText.h"
class HelpDisplay : public ActorFrame
{
public:
HelpDisplay();
void SetTips( CStringArray &arrayTips );
virtual void Update( float fDeltaTime );
protected:
BitmapText m_textTip;
CStringArray m_arrayTips;
int m_iCurTipIndex;
float m_fSecsUntilSwitch;
};
#endif