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

@ -26,35 +26,35 @@ public interface ILocational
* Gets the X coordinate of this object.
* @return the X coordinate
*/
public int getX();
int getX();
/**
* Gets the Y coordinate of this object.
* @return the current Y coordinate
*/
public int getY();
int getY();
/**
* Gets the Z coordinate of this object.
* @return the current Z coordinate
*/
public int getZ();
int getZ();
/**
* Gets the heading of this object.
* @return the current heading
*/
public int getHeading();
int getHeading();
/**
* Gets the instance zone ID of this object.
* @return the ID of the instance zone this object is currently in (0 - not in any instance)
*/
public int getInstanceId();
int getInstanceId();
/**
* Gets this object's location.
* @return a {@link ILocational} object containing the current position of this object
*/
public ILocational getLocation();
ILocational getLocation();
}