Files
itgmania212121/stepmania/src/TextBanner.h
T

26 lines
594 B
C++
Raw Normal View History

#pragma once
/*
-----------------------------------------------------------------------------
Class: TextBanner
Desc: Shows song title, subtitle, and artist/. Displayed on the MusicWheel.
2002-05-19 01:59:48 +00:00
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "ActorFrame.h"
#include "BitmapText.h"
class Song;
class TextBanner : public ActorFrame
{
public:
TextBanner();
2002-02-05 05:33:33 +00:00
bool LoadFromSong( Song* pSong );
private:
BitmapText m_textTitle, m_textSubTitle, m_textArtist;
};