Rename Point3D to WorldPoint

This commit is contained in:
Max Weber
2018-03-08 00:57:20 -07:00
parent 5e887ed11c
commit 6f9b855520
5 changed files with 33 additions and 18 deletions

View File

@@ -22,15 +22,30 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package net.runelite.api;
package net.runelite.api.coords;
import lombok.Value;
import net.runelite.api.Point;
@Value
public class Point3D
public class WorldPoint
{
private final int X, Y, Z;
/**
* The X coordinate of the Point.
* Units are in tiles
*/
private final int X;
/**
* The Y coordinate of the Point.
* Units are in tiles
*/
private final int Y;
/**
* The plane coordinate of the Point.
*/
private final int plane;
public Point toPoint()
{