13 lines
252 B
Java
13 lines
252 B
Java
package net.minecraft.util;
|
|
|
|
import com.google.gson.JsonElement;
|
|
|
|
public interface IJsonSerializable
|
|
{
|
|
void fromJson(JsonElement json);
|
|
|
|
/**
|
|
* Gets the JsonElement that can be serialized.
|
|
*/
|
|
JsonElement getSerializableElement();
|
|
} |