Improve variable names
This commit is contained in:
@@ -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];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user