Objective cleanup

This commit is contained in:
Anuken
2022-04-12 23:52:24 -04:00
parent 0902a675db
commit 41a3dae138
2 changed files with 9 additions and 6 deletions

View File

@@ -73,6 +73,11 @@ public class MapObjectives{
public static abstract class MapObjective{
public ObjectiveMarker[] markers = {};
public MapObjective withMarkers(ObjectiveMarker... markers){
this.markers = markers;
return this;
}
public boolean complete(){
return false;
}