mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-26 14:27:59 +01:00
24 lines
692 B
Java
24 lines
692 B
Java
package com.minelittlepony.pony.data;
|
|
|
|
import com.google.gson.JsonDeserializationContext;
|
|
import com.google.gson.JsonElement;
|
|
import com.google.gson.JsonParseException;
|
|
import net.minecraft.client.resources.data.IMetadataSectionSerializer;
|
|
|
|
import java.lang.reflect.Type;
|
|
|
|
public class PonyDataSerialiser implements IMetadataSectionSerializer<IPonyData> {
|
|
|
|
public static final String NAME = "pony";
|
|
|
|
@Override
|
|
public String getSectionName() {
|
|
return NAME;
|
|
}
|
|
|
|
@Override
|
|
public PonyData deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
|
|
return context.deserialize(json, PonyData.class);
|
|
}
|
|
}
|
|
|