]> git.lizzy.rs Git - BoundingBoxOutlineReloaded.git/blobdiff - src/main/java/com/irtimaled/bbor/client/Player.java
Change Sphere center to use Point not Coords and Offsets
[BoundingBoxOutlineReloaded.git] / src / main / java / com / irtimaled / bbor / client / Player.java
index 33e714e1fa2834ab7bddbd76ed93c198a4447472..1085a22c580ccc8153ba72b7377b8d52e374264b 100644 (file)
@@ -1,6 +1,7 @@
 package com.irtimaled.bbor.client;
 
 import com.irtimaled.bbor.common.models.Coords;
+import com.irtimaled.bbor.common.models.Point;
 import net.minecraft.entity.player.EntityPlayer;
 
 public class Player {
@@ -50,4 +51,8 @@ public class Player {
     public static Coords getCoords() {
         return new Coords(x, y, z);
     }
+
+    public static Point getPoint() {
+        return new Point(x, y, z);
+    }
 }