the_big_one/src/main/java/jesse/keeblarcraft/Utils/DirectionalVec.java
Jkibbels cb9c3c124e
Some checks failed
build / build (21) (push) Has been cancelled
[DEV] Comment updates on everything done over the past 6 weeks
2024-12-06 02:04:09 -05:00

21 lines
720 B
Java

package jesse.keeblarcraft.Utils;
import net.minecraft.registry.RegistryKey;
import net.minecraft.world.World;
/////////////////////////////////////////////////////////////////////////////
/// @class DirectionalVec
///
/// @brief DirectionalVec creates a vector of information that can store
/// world information and a players vector information of where they
/// are in the world + where their camera is looking (yaw & pitch)
/////////////////////////////////////////////////////////////////////////////
public class DirectionalVec {
public RegistryKey<World> world;
public double x;
public double y;
public double z;
public float yaw;
public float pitch;
}