Post merge fixes.

This commit is contained in:
Sebastian Hartte
2020-07-27 19:12:16 +02:00
parent 0fdc46b358
commit 49296915c9
9 changed files with 19 additions and 27 deletions
+6 -6
View File
@@ -18,23 +18,23 @@
package appeng.util;
import net.minecraft.util.math.vector.Vector3d;
import net.minecraft.util.math.Vec3d;
public class LookDirection {
private final Vector3d a;
private final Vector3d b;
private final Vec3d a;
private final Vec3d b;
public LookDirection(final Vector3d a, final Vector3d b) {
public LookDirection(final Vec3d a, final Vec3d b) {
this.a = a;
this.b = b;
}
public Vector3d getA() {
public Vec3d getA() {
return this.a;
}
public Vector3d getB() {
public Vec3d getB() {
return this.b;
}
}