BloodMagic/src/main/java/WayofTime/alchemicalWizardry/api/rituals/LocalRitualStorage.java

22 lines
467 B
Java
Raw Normal View History

package WayofTime.alchemicalWizardry.api.rituals;
import net.minecraft.nbt.NBTTagCompound;
/**
* This class is used to pass ritual-specific data into the RitualEffect from the containing Master Ritual Stone. This is basically used as auxillarary storage,
* for when simply storing to NBT becomes... difficult.
*
*/
public class LocalRitualStorage
{
public void writeToNBT(NBTTagCompound tag)
{
}
public void readFromNBT(NBTTagCompound tag)
{
}
}