Files
itgmania212121/stepmania/src/TextBanner.h
T

41 lines
711 B
C++
Raw Normal View History

/*
-----------------------------------------------------------------------------
File: TextBanner.h
Desc: The song's TextBanner displayed in SelectSong.
Copyright (c) 2001 Chris Danford. All rights reserved.
-----------------------------------------------------------------------------
*/
#ifndef _TextBanner_H_
#define _TextBanner_H_
#include "ActorFrame.h"
#include "Song.h"
#include "BitmapText.h"
2002-01-16 10:01:32 +00:00
#include "Rectangle.h"
2002-02-02 05:11:12 +00:00
const float TEXT_BANNER_WIDTH = 250;
2002-01-16 10:01:32 +00:00
const float TEXT_BANNER_HEIGHT = 40;
class TextBanner : public ActorFrame
{
public:
TextBanner();
2002-01-16 10:01:32 +00:00
bool LoadFromSong( Song &song );
private:
BitmapText m_textTitle, m_textSubTitle, m_textArtist;
2002-01-16 10:01:32 +00:00
RectangleActor m_rect;
};
#endif