22 lines
467 B
Java
22 lines
467 B
Java
![]() |
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)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|