X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=bigscreen%2Fgroup.h;h=312d71e2d23b388622a20229aaffa11abcdf31ff;hp=f6348c0cab71576d49ddcd26700586164e24a4c3;hb=3a708ad09d26d955393edfedbffdf668c58ccd48;hpb=f40fa6f12fb246c09e925e97bcd7c40f8d2fa59c diff --git a/bigscreen/group.h b/bigscreen/group.h index f6348c0..312d71e 100644 --- a/bigscreen/group.h +++ b/bigscreen/group.h @@ -6,16 +6,16 @@ /* This more or less mimics the structures from show-tournament.pl */ struct Song { - unsigned id; - widestring title, artist; + int id; + widestring title, short_title, artist; }; struct Score { Song song; bool chosen; - unsigned score; + int score; }; struct Player { - unsigned id; + unsigned id, position; widestring nick; unsigned total, rank; @@ -24,6 +24,7 @@ struct Player { struct Group { unsigned tournament, round, parallel; + unsigned num_qualifying; std::vector players; };