X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=bigscreen%2Fgroup.h;h=312d71e2d23b388622a20229aaffa11abcdf31ff;hp=c57f7b3aba6a2b368d0495bcf4469c921c216c0b;hb=3a708ad09d26d955393edfedbffdf668c58ccd48;hpb=20b9ea1a0a1d6f43af9fadeea1ad30aa2304b778 diff --git a/bigscreen/group.h b/bigscreen/group.h index c57f7b3..312d71e 100644 --- a/bigscreen/group.h +++ b/bigscreen/group.h @@ -7,7 +7,7 @@ /* This more or less mimics the structures from show-tournament.pl */ struct Song { int id; - widestring title, artist; + widestring title, short_title, artist; }; struct Score { Song song; @@ -15,7 +15,7 @@ struct 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; };