Package org.rsbot.client

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


  }

  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

Related Classes of org.rsbot.client.RSSequence

Copyright © 2018 www.massapicom. 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.