void addLocation(name, location); //Addes new location
Map<String, Location> getLocations(); //Gets map of locations
void removeLocation(name); //Removes location from map
Location getLocationByName(name) //Gets location by name
Optional<Location> getLocation(name); //Gets location by name
Arena options (The arena stores options in YAML).
Thanks to arena options you can store some custom values.
Options options = arena.options();
//or
Options options = arena.getOptionsOrCreate();
options.setValue("key", "value"); //sets the value
Object value = options.getValue("key"); //gets the value
Object value = options.getValueOrDefault("key", "default"); //gets the value, or default value