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();
|
2002-02-06 05:13:39 +00:00
|
|
|
void Set( SongSortOrder so );
|
2002-01-16 10:01:32 +00:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|