Reduce to 24 compiler errors

This commit is contained in:
2025-07-30 20:37:52 +02:00
parent 598daadd33
commit fb518efe63
7 changed files with 109 additions and 47 deletions
@@ -35,9 +35,11 @@ public interface Region {
static Stream<Region> getRegions() {
return RegionSystem.INSTANCE.getRegions();
}
static Region getRegion(Location location) {
return RegionSystem.INSTANCE.get(location);
}
static Region getGlobalRegion() {
return RegionSystem.INSTANCE.getGlobalRegion();
}
@@ -58,6 +60,8 @@ public interface Region {
RegionHistory getHistory();
RegionBackups getBackups();
interface Area {
Area EMPTY = new Area() {