working on GrooveGraph

This commit is contained in:
Chris Danford
2003-04-22 08:43:12 +00:00
parent e057cf3f9b
commit e828fc3f5d
6 changed files with 82 additions and 44 deletions
+12
View File
@@ -13,6 +13,18 @@
#include "GameConstantsAndTypes.h"
#include "GameState.h"
CString CategoryToString( RadarCategory cat )
{
switch( cat )
{
case RADAR_STREAM: return "stream";
case RADAR_VOLTAGE: return "voltage";
case RADAR_AIR: return "air";
case RADAR_FREEZE: return "freeze";
case RADAR_CHAOS: return "chaos";
default: ASSERT(0); return ""; // invalid
}
}
CString DifficultyToString( Difficulty dc )
{