State for map
This commit is contained in:
parent
1db515d796
commit
35334f0308
@ -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, the characters are reset for all players
|
||||||
// TODO bug, when refreshing page, some data is missing until other clients make a move
|
// 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 add debug menu on dev, for testing and cheating
|
||||||
// TODO join/new game lobby
|
// TODO join/new game lobby
|
||||||
// TODO sign up player page
|
// TODO sign up player page
|
||||||
|
@ -53,3 +53,7 @@ export const currentPlayerAtom = atom<Player | undefined>(get => {
|
|||||||
* Whether the roll dice button should be enabled.
|
* Whether the roll dice button should be enabled.
|
||||||
*/
|
*/
|
||||||
export const rollDiceButtonAtom = atom(true);
|
export const rollDiceButtonAtom = atom(true);
|
||||||
|
/**
|
||||||
|
* The map that is currently selected.
|
||||||
|
*/
|
||||||
|
export const selectedMapAtom = atom<GameMap | undefined>(undefined);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user