summaryrefslogtreecommitdiff
path: root/frontend/src/models
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/models')
-rw-r--r--frontend/src/models/currentGame.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/src/models/currentGame.js b/frontend/src/models/currentGame.js
index fcabe875..6ff00858 100644
--- a/frontend/src/models/currentGame.js
+++ b/frontend/src/models/currentGame.js
@@ -1,6 +1,7 @@
+import { List } from 'immutable';
import type { ApiPlayerTurnInfo } from '../api/model';
export class CurrentGameState {
- playersReadiness: Map<string, boolean> = new Map();
+ readyUsernames: List<string> = new List();
turnInfo: ApiPlayerTurnInfo | null = null
}
bgstack15