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