NoteSkin format change. Fixes artifacts along borders, and more flexability for artists.

This commit is contained in:
Chris Danford
2003-02-05 03:53:57 +00:00
parent 36f784f807
commit 3ea84b5e5c
15 changed files with 1525 additions and 1332 deletions
+5
View File
@@ -53,6 +53,11 @@ NoteType GetNoteType( int iNoteIndex )
else return NOTE_TYPE_INVALID;
};
NoteType BeatToNoteType( float fBeat )
{
return GetNoteType( BeatToNoteRow(fBeat) );
};
bool IsNoteOfType( int iNoteIndex, NoteType t )
{
return GetNoteType(iNoteIndex) == t;