mirror of
https://github.com/Minestom/Minestom.git
synced 2025-01-04 23:47:59 +01:00
Added toString for Vec
This commit is contained in:
parent
690b5bff57
commit
838472b6c5
@ -515,6 +515,15 @@ public final class Vec implements Point {
|
|||||||
return Objects.hash(x, y, z);
|
return Objects.hash(x, y, z);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "Vec{" +
|
||||||
|
"x=" + x +
|
||||||
|
", y=" + y +
|
||||||
|
", z=" + z +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
|
||||||
@FunctionalInterface
|
@FunctionalInterface
|
||||||
public interface Operator {
|
public interface Operator {
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user