minecraft-src/net/minecraft/server/packs/metadata/MetadataSectionSerializer.java
2025-07-04 01:41:11 +03:00

12 lines
264 B
Java

package net.minecraft.server.packs.metadata;
import com.google.gson.JsonObject;
public interface MetadataSectionSerializer<T> {
/**
* The name of this section type as it appears in JSON.
*/
String getMetadataSectionName();
T fromJson(JsonObject json);
}