Added current player marker

This commit is contained in:
Alexis
2023-10-10 00:09:08 +02:00
parent 1fbc96acf2
commit f6d52fc8b1
7 changed files with 60 additions and 10 deletions

View File

@@ -10,3 +10,13 @@ export type MapMarker = {
link?: string,
group?: MapMarkerGroup,
}
export type PlayerMarker = {
title: string,
markerCoords: {
x: number,
y: number,
}
description?: string,
link?: string,
}