Started work on the farm, some changes to the idsu, its still broken

This commit is contained in:
modmuss50 2015-07-13 13:54:44 +01:00
parent be33bdc148
commit c160abf176
26 changed files with 626 additions and 194 deletions

View file

@ -0,0 +1,9 @@
package techreborn.api.farm;
import net.minecraft.item.ItemStack;
public interface IFarmLogicContainer {
public IFarmLogicDevice getLogicFromStack(ItemStack stack);
}

View file

@ -0,0 +1,9 @@
package techreborn.api.farm;
import techreborn.tiles.TileFarm;
public interface IFarmLogicDevice {
public void tick(TileFarm tileFarm);
}

View file

@ -0,0 +1,5 @@
@API(apiVersion = "@MODVERSION@", owner = "techreborn", provides = "techrebornAPI")
package techreborn.api.farm;
import cpw.mods.fml.common.API;