add SongCreditDisplay

This commit is contained in:
Chris Danford
2004-01-25 01:59:21 +00:00
parent 08d91fe905
commit bec296636e
6 changed files with 149 additions and 36 deletions
+26
View File
@@ -0,0 +1,26 @@
#ifndef _SongCreditDisplay_H_
#define _SongCreditDisplay_H_
/*
-----------------------------------------------------------------------------
File: SongCreditDisplay.h
Desc: A graphic displayed in the SongCreditDisplay during Dancing.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "ActorFrame.h"
#include "BitmapText.h"
class SongCreditDisplay : public ActorFrame
{
public:
SongCreditDisplay();
protected:
BitmapText m_text;
};
#endif