23 lines
525 B
C++
23 lines
525 B
C++
#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 "BitmapText.h"
|
|
|
|
class SongCreditDisplay : public BitmapText
|
|
{
|
|
public:
|
|
SongCreditDisplay();
|
|
};
|
|
|
|
#endif
|