2002-05-01 19:14:55 +00:00
|
|
|
#pragma once
|
|
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
Class: BannerWithFrame
|
|
|
|
|
|
|
|
|
|
Desc: bonus meters and max combo number.
|
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class BannerWithFrame : public ActorFrame
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
BannerWithFrame();
|
|
|
|
|
|
|
|
|
|
void LoadFromSong( Song* pSong );
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
Sprite m_sprBannerFrame;
|
|
|
|
|
Banner m_Banner;
|
|
|
|
|
};
|