Files
itgmania212121/stepmania/src/BannerWithFrame.h
T

30 lines
573 B
C++
Raw Normal View History

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;
};