TechReborn/src/main/java/techreborn/partSystem/IPartDesc.java

11 lines
210 B
Java
Raw Normal View History

2015-06-29 21:04:17 +02:00
package techreborn.partSystem;
import net.minecraft.nbt.NBTTagCompound;
public interface IPartDesc {
public void readDesc(NBTTagCompound tagCompound);
public void writeDesc(NBTTagCompound tagCompound);
}