Files
itgmania212121/stepmania/src/Banner.h
T

34 lines
552 B
C++
Raw Normal View History

/*
-----------------------------------------------------------------------------
File: Banner.h
Desc: The song's banner displayed in SelectSong.
Copyright (c) 2001 Chris Danford. All rights reserved.
-----------------------------------------------------------------------------
*/
2001-11-03 10:52:42 +00:00
#ifndef _Banner_H_
#define _Banner_H_
#include "Sprite.h"
#include "Song.h"
2001-11-25 04:31:44 +00:00
const float BANNER_WIDTH = 192; // from the source art of DDR
const float BANNER_HEIGHT = 55;
2001-11-03 10:52:42 +00:00
class Banner : public Sprite
{
public:
2001-11-25 04:31:44 +00:00
bool LoadFromSong( Song &song);
2001-11-03 10:52:42 +00:00
};
#endif