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

10 lines
212 B
Java
Raw Normal View History

2013-07-28 10:37:31 +00:00
package forestry.api.core;
import net.minecraft.nbt.NBTTagCompound;
public interface INBTTagable {
void readFromNBT(NBTTagCompound nbttagcompound);
void writeToNBT(NBTTagCompound nbttagcompound);
}