Files
itgmania212121/stepmania/src/MusicSortDisplay.h
T

34 lines
605 B
C++
Raw Normal View History

2002-01-16 10:01:32 +00:00
/*
-----------------------------------------------------------------------------
File: MusicSortDisplay.h
Desc: A graphic displayed in the MusicSortDisplay during Dancing.
2002-05-19 01:59:48 +00:00
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
2002-01-16 10:01:32 +00:00
-----------------------------------------------------------------------------
*/
class MusicSortDisplay;
#ifndef _MusicSortDisplay_H_
#define _MusicSortDisplay_H_
#include "Sprite.h"
2002-05-01 19:14:55 +00:00
#include "GameConstantsAndTypes.h"
2002-01-16 10:01:32 +00:00
class MusicSortDisplay : public Sprite
{
public:
MusicSortDisplay();
void Set( SongSortOrder so );
2002-01-16 10:01:32 +00:00
protected:
};
#endif