Improve variable names

This commit is contained in:
James Seibel
2020-10-25 19:57:45 -05:00
parent a1abccadd9
commit 3bc0c3368c
@@ -7,16 +7,18 @@ package backsun.lod.objects;
* one file in the file system.
*
* @author James Seibel
* @version 09-28-2020
* @version 10-22-2020
*/
public class LodRegion
{
public static final int SIZE = 32;
/** X coordinate of this region */
public final int x;
/** Z coordinate of this region */
public final int z;
public LodChunk data[][];
public LodChunk chunks[][];
public LodRegion(int regionX, int regionZ)
@@ -24,6 +26,6 @@ public class LodRegion
x = regionX;
z = regionZ;
data = new LodChunk[32][32];
chunks = new LodChunk[SIZE][SIZE];
}
}