New lobby

This commit is contained in:
Andrew 2023-03-04 14:31:12 +07:00
parent 99151d0ec9
commit af85165943
6 changed files with 270 additions and 204 deletions

View file

@ -1,8 +1,9 @@
class Game {
final String id;
final String player1;
final String player2;
final String guesser;
final String suggester;
final int tries;
final Set<String> colors;
Game(this.id, this.player1, this.player2, this.colors);
Game(this.id, this.guesser, this.suggester, this.tries, this.colors);
}