Files
itgmania212121/stepmania/src/LyricDisplay.h
T

30 lines
628 B
C++
Raw Normal View History

2003-03-19 19:57:52 +00:00
#ifndef LYRIC_DISPLAY_H
#define LYRIC_DISPLAY_H
#include "ActorFrame.h"
2003-03-19 20:45:20 +00:00
#include "song.h"
2003-03-19 19:57:52 +00:00
#include "BitmapText.h"
class LyricDisplay: public ActorFrame {
public:
LyricDisplay();
void Update(float fDeltaTime);
/* Call when song changes: */
void Init();
private:
BitmapText m_textLyrics;
unsigned m_iCurLyricNumber;
2003-05-18 22:37:20 +00:00
float m_fLastSecond;
2003-03-19 19:57:52 +00:00
};
#endif
2003-03-19 20:00:19 +00:00
/*
-----------------------------------------------------------------------------
Copyright (c) 2003 by the person(s) listed below. All rights reserved.
Kevin Slaughter
Glenn Maynard
-----------------------------------------------------------------------------
*/