add explosion graphic and sound if step on mine

This commit is contained in:
Chris Danford
2003-08-10 21:27:54 +00:00
parent 09c5bd5d88
commit 7bd15144cb
14 changed files with 146 additions and 244 deletions
+16
View File
@@ -141,3 +141,19 @@ SongSortOrder StringToSongSortOrder( CString str )
return SORT_INVALID;
}
CString TapNoteScoreToString( TapNoteScore tns )
{
switch( tns )
{
case TNS_NONE: return "none";
case TNS_MISS: return "miss";
case TNS_BOO: return "boo";
case TNS_GOOD: return "good";
case TNS_GREAT: return "great";
case TNS_PERFECT: return "perfect";
case TNS_MARVELOUS: return "marvelous";
default: ASSERT(0); return ""; // invalid Difficulty
}
}