diff options
Diffstat (limited to '')
-rw-r--r-- | src/base/UNote.pas | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/src/base/UNote.pas b/src/base/UNote.pas index 6eb99df9..d6fdcb13 100644 --- a/src/base/UNote.pas +++ b/src/base/UNote.pas @@ -88,12 +88,23 @@ type Note: array of TPlayerNote; end; +{* Player and music info *} var - - // player and music info - Player: array of TPlayer; + {** + * Player info and state for each player. + * The amount of players is given by PlayersPlay. + *} + Player: array of TPlayer; + + {** + * Number of players or teams playing. + * Possible values: 1 - 6 + *} PlayersPlay: integer; + {** + * Selected song for singing. + *} CurrentSong: TSong; const |