the_big_one/src/main/java/jesse/keeblarcraft/Utils/DirectionalVec.java

14 lines
291 B
Java
Raw Normal View History

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;
public float yaw;
public float pitch;
2024-11-29 09:00:14 +00:00
}