Unicopia/src/main/java/com/minelittlepony/unicopia/spell/IAttachedEffect.java

22 lines
638 B
Java
Raw Normal View History

2019-02-20 16:24:26 +01:00
package com.minelittlepony.unicopia.spell;
import com.minelittlepony.unicopia.player.IPlayer;
public interface IAttachedEffect extends IMagicEffect {
/**
* Called every tick when attached to a player.
*
* @param source The entity we are currently attached to.
* @return true to keep alive
*/
boolean updateOnPerson(IPlayer caster);
/**
* Called every tick when attached to a player. Used to apply particle effects.
* Is only called on the client side.
*
* @param source The entity we are currently attached to.
*/
default void renderOnPerson(IPlayer source) {}
}