rename TipDisplay -> HelpDisplay
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user