Add LodRegion toString

This commit is contained in:
James Seibel
2021-01-28 14:39:36 -06:00
parent 4be13923f1
commit c757e49473
@@ -61,4 +61,16 @@ public class LodRegion
{
return chunks;
}
@Override
public String toString()
{
String s = "";
s += "x: " + x + " z: " + z + "\t";
return s;
}
}