State for map

This commit is contained in:
Martin Berg Alstad 2023-07-20 18:09:18 +02:00
parent 1db515d796
commit 35334f0308
2 changed files with 5 additions and 0 deletions

View File

@ -17,6 +17,7 @@ const wsService = new WebSocketService(import.meta.env.VITE_API_WS);
// TODO bug, when refreshing page, the characters are reset for all players
// TODO bug, when refreshing page, some data is missing until other clients make a move
// TODO store map in backend and save it in state on each client
// TODO add debug menu on dev, for testing and cheating
// TODO join/new game lobby
// TODO sign up player page

View File

@ -53,3 +53,7 @@ export const currentPlayerAtom = atom<Player | undefined>(get => {
* Whether the roll dice button should be enabled.
*/
export const rollDiceButtonAtom = atom(true);
/**
* The map that is currently selected.
*/
export const selectedMapAtom = atom<GameMap | undefined>(undefined);