Code style changes.

This commit is contained in:
MobiusDev
2016-04-26 19:21:19 +00:00
parent 6a13705766
commit fc070c9238
768 changed files with 3338 additions and 4252 deletions

View File

@@ -21,16 +21,16 @@ package com.l2jmobius.commons.geodriver;
*/
public interface IBlock
{
public static final int TYPE_FLAT = 0;
public static final int TYPE_COMPLEX = 1;
public static final int TYPE_MULTILAYER = 2;
int TYPE_FLAT = 0;
int TYPE_COMPLEX = 1;
int TYPE_MULTILAYER = 2;
/** Cells in a block on the x axis */
public static final int BLOCK_CELLS_X = 8;
int BLOCK_CELLS_X = 8;
/** Cells in a block on the y axis */
public static final int BLOCK_CELLS_Y = 8;
int BLOCK_CELLS_Y = 8;
/** Cells in a block */
public static final int BLOCK_CELLS = BLOCK_CELLS_X * BLOCK_CELLS_Y;
int BLOCK_CELLS = BLOCK_CELLS_X * BLOCK_CELLS_Y;
boolean checkNearestNswe(int geoX, int geoY, int worldZ, int nswe);