diff options
Diffstat (limited to 'frontend/src/models/currentGame.js')
-rw-r--r-- | frontend/src/models/currentGame.js | 8 |
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; -} |