Skip to content

Commit

Permalink
Removed client side class from KMath
Browse files Browse the repository at this point in the history
  • Loading branch information
LatvianModder committed Oct 28, 2024
1 parent fabaff1 commit c45cf1e
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/main/java/dev/latvian/mods/kubejs/bindings/KMath.java
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
package dev.latvian.mods.kubejs.bindings;

import com.mojang.blaze3d.vertex.PoseStack;
import net.minecraft.core.BlockPos;
import net.minecraft.world.phys.Vec3;
import net.neoforged.api.distmarker.Dist;
import net.neoforged.api.distmarker.OnlyIn;
import org.joml.Matrix3f;
import org.joml.Matrix4f;
import org.joml.Quaternionf;
Expand Down Expand Up @@ -47,11 +44,6 @@ static Matrix4f m4f() {
return new Matrix4f();
}

@OnlyIn(Dist.CLIENT)
static PoseStack poseStack() {
return new PoseStack();
}

static Quaternionf quaternion(float x, float y, float z, float w) {
return new Quaternionf(x, y, z, w);
}
Expand Down

0 comments on commit c45cf1e

Please sign in to comment.