Add Coal Cents economy

This commit is contained in:
CoalGov Deploy
2026-05-04 17:00:05 +00:00
commit c8cc200004
73 changed files with 6873 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package com.librewiki.coalgov.model;
public record LandRegion(
long id,
String name,
String world,
int x1,
int z1,
int x2,
int z2,
LandClass landClass,
long createdAt
) {
public boolean contains(String worldName, int x, int z) {
return world.equals(worldName) && x >= x1 && x <= x2 && z >= z1 && z <= z2;
}
}