Generated the initial infrastructure for Alchemy Array effects, which includes crafting. Needs to be hooked into by TileAlchemyArray.

This commit is contained in:
WayofTime 2015-12-23 18:45:47 -05:00
parent 073830a785
commit 63c3853776
7 changed files with 289 additions and 13 deletions
src/main/java/WayofTime/bloodmagic/api/alchemyCrafting

View file

@ -0,0 +1,9 @@
package WayofTime.bloodmagic.api.alchemyCrafting;
import net.minecraft.tileentity.TileEntity;
public abstract class AlchemyArrayEffect {
public abstract boolean update(TileEntity tile, int ticksActive);
}