Files
itgmania212121/stepmania/src/MusicSortDisplay.h
T

33 lines
613 B
C++
Raw Normal View History

#ifndef MUSICSORTDISPLAY_H
#define MUSICSORTDISPLAY_H
2002-01-16 10:01:32 +00:00
/*
-----------------------------------------------------------------------------
2002-08-20 21:00:56 +00:00
Class: MusicSortDisplay
2002-01-16 10:01:32 +00:00
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-08-20 21:00:56 +00:00
Chris Danford
2002-01-16 10:01:32 +00:00
-----------------------------------------------------------------------------
*/
class MusicSortDisplay;
#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