no message

This commit is contained in:
Chris Danford
2002-05-29 09:47:24 +00:00
parent f3c360a7d6
commit bfc327df13
27 changed files with 332 additions and 228 deletions
+10 -2
View File
@@ -15,6 +15,7 @@
#include "Song.h"
//#include <d3dxmath.h> // for D3DXCOLOR
const int MAX_SONG_QUEUE_SIZE = 30;
class SongManager
{
@@ -22,14 +23,21 @@ public:
SongManager();
~SongManager();
Song* m_pCurSong;
Notes* m_pCurNotes[NUM_PLAYERS];
Song* m_pCurSong[MAX_SONG_QUEUE_SIZE];
Notes* m_pCurNotes[MAX_SONG_QUEUE_SIZE][NUM_PLAYERS];
CString m_sPreferredGroup;
CArray<Song*, Song*> m_pSongs; // all songs that can be played
void InitSongArrayFromDisk();
Song* GetCurrentSong();
Notes* GetCurrentNotes( PlayerNumber p );
void SetCurrentSong( Song* pSong );
void SetCurrentNotes( PlayerNumber p, Notes* pNotes );
void CleanUpSongArray();
void ReloadSongArray();