Added world settings type and added it into gameStore

This commit is contained in:
2024-10-14 20:11:30 +02:00
parent 1bdd2bc75a
commit 8b1efca7b8
4 changed files with 23 additions and 3 deletions

View File

@ -215,3 +215,10 @@ export type ChatMessage = {
character: Character
message: string
}
export type WorldSettings = {
date: Date
isRainEnabled: boolean
isFogEnabled: boolean
fogDensity: number
}