Add the ability to get all LOD chunks

This commit is contained in:
James Seibel
2021-01-28 14:25:16 -06:00
parent 75e272814d
commit d10dd07a68
@@ -55,4 +55,10 @@ public class LodRegion
return chunks[arrayX][arrayZ];
}
public LodChunk[][] getAllLods()
{
return chunks;
}
}