X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=bigscreen%2Fgroup.h;h=312d71e2d23b388622a20229aaffa11abcdf31ff;hp=6961a90b5b2636a1e71213ebec91cc8801c6e3ba;hb=3a708ad09d26d955393edfedbffdf668c58ccd48;hpb=8970b43d021e65f07ed4d279185c5062b4f9ee4a diff --git a/bigscreen/group.h b/bigscreen/group.h index 6961a90..312d71e 100644 --- a/bigscreen/group.h +++ b/bigscreen/group.h @@ -6,24 +6,25 @@ /* 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 score, rank; + unsigned total, rank; std::vector scores; }; struct Group { unsigned tournament, round, parallel; + unsigned num_qualifying; std::vector players; };