checkin of v1.50

This commit is contained in:
Chris Danford
2002-01-16 10:01:32 +00:00
parent 7f3a131195
commit 0add9e0bb3
66 changed files with 3425 additions and 1313 deletions
+35
View File
@@ -0,0 +1,35 @@
/*
-----------------------------------------------------------------------------
File: MusicSortDisplay.h
Desc: A graphic displayed in the MusicSortDisplay during Dancing.
Copyright (c) 2001 Chris Danford. All rights reserved.
-----------------------------------------------------------------------------
*/
class MusicSortDisplay;
#ifndef _MusicSortDisplay_H_
#define _MusicSortDisplay_H_
#include "Sprite.h"
enum MusicSortOrder { SORT_GROUP, SORT_TITLE, SORT_BPM, SORT_ARTIST, SORT_MOST_PLAYED, NUM_SORT_ORDERS };
class MusicSortDisplay : public Sprite
{
public:
MusicSortDisplay();
void Set( MusicSortOrder so );
protected:
};
#endif