15 lines
338 B
Java
15 lines
338 B
Java
![]() |
package jesse.keeblarcraft.Utils;
|
||
|
|
||
|
import net.minecraft.registry.RegistryKey;
|
||
|
import net.minecraft.world.World;
|
||
|
|
||
|
public class DirectionalVec {
|
||
|
// public String RegistryKeyStringWorld;
|
||
|
public RegistryKey<World> world;
|
||
|
public double x;
|
||
|
public double y;
|
||
|
public double z;
|
||
|
public double yaw;
|
||
|
public double pitch;
|
||
|
}
|