Updating the finished tool paradigm

This commit is contained in:
WayofTime 2014-07-06 08:03:22 -04:00
parent cabc296b21
commit 084e3dd348
20 changed files with 181 additions and 26 deletions

View file

@ -14,9 +14,9 @@ import cpw.mods.fml.common.registry.GameRegistry.UniqueIdentifier;
public class BlockSet
{
private String blockid;
private int[] metadata;
private List<Int3> positions;
protected String blockid;
protected int[] metadata;
protected List<Int3> positions;
public BlockSet()
{

View file

@ -0,0 +1,8 @@
package WayofTime.alchemicalWizardry.common.demonVillage;
import net.minecraft.nbt.NBTTagCompound;
public class TileBlockSet extends BlockSet
{
public NBTTagCompound tag;
}