Updated tiles logics

This commit is contained in:
2024-07-11 19:52:33 +02:00
parent 90046613ca
commit e72a3a9f45
9 changed files with 143 additions and 105 deletions

View File

@ -10,6 +10,14 @@ export type Asset = {
type: 'base64' | 'link'
}
export type Tile = {
id: string
name: string
tags: string[]
createdAt: Date
updatedAt: Date
}
export type Object = {
id: string
name: string
@ -65,11 +73,6 @@ export type CharacterItem = {
quantity: number
}
export type TileTag = {
tile: string
tags: any // Using 'any' for Json type, consider using a more specific type if possible
}
export type Zone = {
id: number
name: string