Add javadoc

This commit is contained in:
Marcel Konrad
2020-11-02 17:48:13 +01:00
parent 1596ce8dff
commit 6408a67956

View File

@@ -72,8 +72,17 @@ public abstract class Coordinate<T extends Number> implements ICoordinate<T>
@OnlyIn(Dist.CLIENT)
public static enum EnumType
{
/**
* Prefix: <code>None</code>
*/
ABSOLUTE(""),
/**
* Prefix: <code>"~"</code>
*/
GLOBAL("~"),
/**
* Prefix: <code>"^"</code>
*/
LOCAL("^");
private final String prefix;