summaryrefslogtreecommitdiff
path: root/frontend/src/models/currentGame.js
blob: 398c65e8da4361b2985e784841e1346e5e5b8fc7 (plain)
1
2
3
4
5
6
7
8
import { List } from 'immutable';
import type { ApiPlayerTurnInfo, ApiTable } from '../api/model';

export class CurrentGameState {
  readyUsernames: List<string> = new List();
  turnInfo: ApiPlayerTurnInfo | null = null;
  table: ApiTable | null = null;
}
bgstack15