[Editor] Enable full support for map labels

From now on, the editor is capable to put map labels in the canavs as well as generate the map labels in output map serialized file.
This commit is contained in:
2023-11-01 16:49:53 +01:00
parent 3d6e064b5d
commit 0470a7f24a
16 changed files with 462 additions and 71 deletions

View File

@@ -0,0 +1,14 @@
package com.bartlomiejpluta.base.api.map.layer.object;
import lombok.Builder;
import lombok.RequiredArgsConstructor;
import lombok.Value;
@Value
@Builder
public class MapPin {
String map;
int layer;
int x;
int y;
}