Code style changes.
This commit is contained in:
@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user