2024-11-29 09:00:14 +00:00
|
|
|
package jesse.keeblarcraft.Utils;
|
|
|
|
|
|
|
|
import net.minecraft.registry.RegistryKey;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
|
|
|
public class DirectionalVec {
|
|
|
|
public RegistryKey<World> world;
|
|
|
|
public double x;
|
|
|
|
public double y;
|
|
|
|
public double z;
|
2024-12-06 03:37:27 +00:00
|
|
|
public float yaw;
|
|
|
|
public float pitch;
|
2024-11-29 09:00:14 +00:00
|
|
|
}
|