
Initial publishing of the 1.16.3 branch of the mod. A lot of systems are missing (such as Rituals and Living Armour), but enough is present for a decent Alpha release.
15 lines
428 B
Java
15 lines
428 B
Java
package wayoftime.bloodmagic.common.alchemyarray;
|
|
|
|
import net.minecraft.nbt.CompoundNBT;
|
|
import wayoftime.bloodmagic.tile.TileAlchemyArray;
|
|
|
|
public abstract class AlchemyArrayEffect
|
|
{
|
|
public abstract AlchemyArrayEffect getNewCopy();
|
|
|
|
public abstract void readFromNBT(CompoundNBT compound);
|
|
|
|
public abstract void writeToNBT(CompoundNBT compound);
|
|
|
|
public abstract boolean update(TileAlchemyArray array, int activeCounter);
|
|
}
|