Interface IIngredientSerializer<T extends Ingredient>
-
- All Known Implementing Classes:
CompoundIngredient.Serializer
,NBTIngredient.Serializer
,VanillaIngredientSerializer
public interface IIngredientSerializer<T extends Ingredient>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
parse(com.google.gson.JsonObject json)
T
parse(PacketBuffer buffer)
void
write(PacketBuffer buffer, T ingredient)
-
-
-
Method Detail
-
parse
T parse(PacketBuffer buffer)
-
parse
T parse(com.google.gson.JsonObject json)
-
write
void write(PacketBuffer buffer, T ingredient)
-
-