Files
itgmania212121/stepmania/src/TipDisplay.h
T
Chris Danford 7766338beb more bug fixes
2002-08-20 21:00:56 +00:00

35 lines
691 B
C++

#pragma once
/*
-----------------------------------------------------------------------------
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;
};