Level/src/main/java/world/bentobox/level/calculators/IslandLevelCalculator.java

11 lines
182 B
Java
Raw Normal View History

2019-11-10 05:09:16 +01:00
package world.bentobox.level.calculators;
public interface IslandLevelCalculator {
/**
* @return the results of the island calculation
*/
2019-11-17 04:19:03 +01:00
Results getResult();
2019-11-10 05:09:16 +01:00
}