mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-27 14:57:58 +01:00
25 lines
693 B
Java
25 lines
693 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 PonyDataSerialzier 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);
|
|
}
|
|
|
|
}
|
|
|