diff options
Diffstat (limited to '')
-rw-r--r-- | src/base/UMusic.pas | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/base/UMusic.pas b/src/base/UMusic.pas index 09d73331..eee271a8 100644 --- a/src/base/UMusic.pas +++ b/src/base/UMusic.pas @@ -39,10 +39,14 @@ uses Classes; type - TNoteType = (ntFreestyle = 0, ntNormal = 1, ntGolden = 2); + TNoteType = (ntFreestyle, ntNormal, ntGolden); const - //Score Factor + // ScoreFactor defines how a notehit of a specified notetype is + // measured in comparison to the other types + // 0 means this notetype is not rated at all + // 2 means a hit of this notetype will be rated w/ twice as much + // points as a hit of a notetype w/ ScoreFactor 1 ScoreFactor: array[TNoteType] of integer = (0, 1, 2); type |