summaryrefslogtreecommitdiff
path: root/frontend/src/models/currentGame.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/models/currentGame.js')
-rw-r--r--frontend/src/models/currentGame.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/frontend/src/models/currentGame.js b/frontend/src/models/currentGame.js
deleted file mode 100644
index 398c65e8..00000000
--- a/frontend/src/models/currentGame.js
+++ /dev/null
@@ -1,8 +0,0 @@
-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