Examples of RSSequence


Examples of org.rsbot.client.RSSequence

  }

  public int getAnimation() {
    final RSAnimator a = getAccessor().getAnimation();
    if (a != null) {
      final RSSequence s = a.getSequence();
      if (s != null) {
        return s.getID();
      }
    }
    return -1;
  }
View Full Code Here

Examples of org.rsbot.client.RSSequence

  }

  public int getPassiveAnimation() {
    final RSAnimator a = getAccessor().getPassiveAnimation();
    if (a != null) {
      final RSSequence s = a.getSequence();
      if (s != null) {
        return s.getID();
      }
    }
    return -1;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.