Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-08 17:20:24 +01:00
Implement 1.12 MetaTypes
Dieser Commit ist enthalten in:
Ursprung
08528a1745
Commit
7d5191fa2f
@ -0,0 +1,34 @@
|
|||||||
|
package us.myles.ViaVersion.api.minecraft.metadata.types;
|
||||||
|
|
||||||
|
import lombok.Getter;
|
||||||
|
import lombok.RequiredArgsConstructor;
|
||||||
|
import us.myles.ViaVersion.api.minecraft.metadata.MetaType;
|
||||||
|
import us.myles.ViaVersion.api.type.Type;
|
||||||
|
|
||||||
|
@RequiredArgsConstructor
|
||||||
|
@Getter
|
||||||
|
public enum MetaType1_12 implements MetaType {
|
||||||
|
Byte(0, Type.BYTE),
|
||||||
|
VarInt(1, Type.VAR_INT),
|
||||||
|
Float(2, Type.FLOAT),
|
||||||
|
String(3, Type.STRING),
|
||||||
|
Chat(4, Type.STRING),
|
||||||
|
Slot(5, Type.ITEM),
|
||||||
|
Boolean(6, Type.BOOLEAN),
|
||||||
|
Vector3F(7, Type.ROTATION),
|
||||||
|
Position(8, Type.POSITION),
|
||||||
|
OptPosition(9, Type.OPTIONAL_POSITION),
|
||||||
|
Direction(10, Type.VAR_INT),
|
||||||
|
OptUUID(11, Type.OPTIONAL_UUID),
|
||||||
|
BlockID(12, Type.VAR_INT),
|
||||||
|
NBTTag(13, Type.NBT),
|
||||||
|
Discontinued(99, null);
|
||||||
|
|
||||||
|
private final int typeID;
|
||||||
|
private final Type type;
|
||||||
|
|
||||||
|
public static MetaType1_12 byId(int id) {
|
||||||
|
return values()[id];
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren