21 lines
409 B
TypeScript
21 lines
409 B
TypeScript
export type MapMarkerGroup = "capitals" | "cities" | "towns" | "landmarks";
|
|
export type MapCoords = {
|
|
x: number,
|
|
y: number,
|
|
}
|
|
|
|
export type MapMarker = {
|
|
title: string,
|
|
markerCoords: MapCoords,
|
|
description?: string,
|
|
link?: string,
|
|
group?: MapMarkerGroup,
|
|
}
|
|
|
|
export type PlayerMarker = {
|
|
title: string,
|
|
markerCoords: MapCoords,
|
|
description?: string,
|
|
link?: string,
|
|
}
|