10 lines
241 B
Java
10 lines
241 B
Java
![]() |
package WayofTime.alchemicalWizardry.common.spell.complex;
|
||
|
|
||
|
import net.minecraft.entity.player.EntityPlayer;
|
||
|
import net.minecraft.world.World;
|
||
|
|
||
|
public interface ISelfSpellEffect
|
||
|
{
|
||
|
public void onSelfUse(World world, EntityPlayer player);
|
||
|
}
|