This commit is contained in:
Anuken
2022-04-28 18:25:39 -04:00
parent 969b70d512
commit 6c42dff884
4 changed files with 11 additions and 3 deletions

View File

@@ -499,6 +499,14 @@ public class MapObjectives{
this.color = color;
}
public MinimapMarker(float x, float y, float radius, float stroke, Color color){
this.x = x;
this.y = y;
this.stroke = stroke;
this.radius = radius;
this.color = color;
}
public MinimapMarker(){
}