BiomesOPlenty/apis/forestry/api/core/INBTTagable.java

10 lines
212 B
Java

package forestry.api.core;
import net.minecraft.nbt.NBTTagCompound;
public interface INBTTagable {
void readFromNBT(NBTTagCompound nbttagcompound);
void writeToNBT(NBTTagCompound nbttagcompound);
}