Initial commit

This commit is contained in:
Electroblob
2018-01-19 20:33:04 +00:00
commit da6b007a3a
945 changed files with 60616 additions and 0 deletions
@@ -0,0 +1,22 @@
package electroblob.wizardry.event;
import electroblob.wizardry.spell.Spell;
import net.minecraft.entity.EntityLivingBase;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.entity.living.LivingEvent;
/**
* [NYI] SpellCastEvent is the parent event class for all spell casting events.<br>
* <br>
* This event is fired on the {@link MinecraftForge#EVENT_BUS}.
*
* @author Electroblob
* @since Wizardry 2.1
*/
public abstract class SpellCastEvent extends LivingEvent {
public SpellCastEvent(EntityLivingBase entity, Spell spell) {
super(entity);
}
}