blob: 6ff008581d65a9a2f75fc728319f38e478957576 (
plain)
1
2
3
4
5
6
7
|
import { List } from 'immutable';
import type { ApiPlayerTurnInfo } from '../api/model';
export class CurrentGameState {
readyUsernames: List<string> = new List();
turnInfo: ApiPlayerTurnInfo | null = null
}
|