Files
itgmania212121/stepmania/src/TipDisplay.h
T
Glenn Maynard 0ff6f863ee s/Song.h/song.h/
I'd prefer "Song.h", but it's not worth losing history for, and SF will
choke on that rename anyway.
2003-02-16 04:28:17 +00:00

38 lines
728 B
C++

#ifndef TIPDISPLAY_H
#define TIPDISPLAY_H
/*
-----------------------------------------------------------------------------
Class: TipDisplay
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 TipDisplay : public ActorFrame
{
public:
TipDisplay();
void SetTips( CStringArray &arrayTips );
virtual void Update( float fDeltaTime );
protected:
BitmapText m_textTip;
CStringArray m_arrayTips;
int m_iCurTipIndex;
float m_fSecsUntilSwitch;
};
#endif