Files
itgmania212121/stepmania/src/Banner.h
T
2002-01-29 21:56:14 +00:00

34 lines
545 B
C++

/*
-----------------------------------------------------------------------------
File: Banner.h
Desc: The song's banner displayed in SelectSong.
Copyright (c) 2001 Chris Danford. All rights reserved.
-----------------------------------------------------------------------------
*/
#ifndef _Banner_H_
#define _Banner_H_
#include "Sprite.h"
#include "Song.h"
const float BANNER_WIDTH = 264;
const float BANNER_HEIGHT = 86;
class Banner : public Sprite
{
public:
bool LoadFromSong( Song* pSong ); // NULL means no Song
};
#endif