mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-02-10 19:08:14 +07:00
Created stub for Actioneer#cast with specified sequence and mode
This commit is contained in:
parent
9a1a66c778
commit
6924af03d6
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user