Created stub for Actioneer#cast with specified sequence and mode

This commit is contained in:
Collin Smith 2020-11-02 18:08:11 -08:00
parent 9a1a66c778
commit 6924af03d6

View File

@ -111,6 +111,14 @@ public class Actioneer extends PassiveSystem {
}
}
/**
* @param seq specific sequence or {@code -1} to use default sequence
* @param mode specific mode or {@link Engine#INVALID_MODE} to use default mode
*/
public void cast(int entityId, int skillId, byte seq, byte mode, int targetId, Vector2 targetVec) {
cast(entityId, skillId, targetId, targetVec);
}
@Subscribe
public void onAnimDataKeyframe(AnimDataKeyframeEvent event) {
if (!mCasting.has(event.entityId)) return;