Files
itgmania212121/stepmania/src/BannerWithFrame.h
T

34 lines
750 B
C++
Raw Normal View History

2002-05-01 19:14:55 +00:00
#pragma once
/*
-----------------------------------------------------------------------------
Class: BannerWithFrame
2002-10-06 16:56:58 +00:00
Desc: show the banner inside a frame.
2002-05-01 19:14:55 +00:00
2002-05-19 01:59:48 +00:00
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
2002-05-01 19:14:55 +00:00
Chris Danford
-----------------------------------------------------------------------------
*/
#include "ActorFrame.h"
#include "Sprite.h"
#include "Banner.h"
2002-07-27 19:29:51 +00:00
class Song;
class Course;
2002-05-01 19:14:55 +00:00
class BannerWithFrame : public ActorFrame
{
public:
BannerWithFrame();
void LoadFromSongAndNotes( Song* pSong, Notes* pNotes[NUM_PLAYERS] );
2002-05-01 19:14:55 +00:00
void LoadFromSong( Song* pSong );
2002-06-14 22:25:22 +00:00
void LoadFromGroup( CString sGroupName );
2002-07-27 19:29:51 +00:00
void LoadFromCourse( Course* pCourse );
2002-05-01 19:14:55 +00:00
protected:
Sprite m_sprBannerFrame;
Banner m_Banner;
};