LasTres/js-src/location.ts

18 lines
317 B
TypeScript
Raw Normal View History

export interface NameIdentifierHash {
name: string
identifier: string
}
2023-06-23 01:39:47 +02:00
export interface Area {
name: string
identifier: string
can_explore: boolean
}
export interface Location {
location: NameIdentifierHash
2023-06-23 01:39:47 +02:00
area: Area
super_area: NameIdentifierHash
planet: NameIdentifierHash
}