Package org.rsbot.client

Examples of org.rsbot.client.Client


   * Safely gets the array of children.
   *
   * @return The child interfaces of the client.
   */
  org.rsbot.client.RSInterface[] getChildrenInternal() {
    final Client c = methods.client;
    if (c == null) {
      return null;
    }
    final org.rsbot.client.RSInterface[][] inters = c.getRSInterfaceCache();
    if (inters != null && index < inters.length) {
      return inters[index];
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of org.rsbot.client.Client

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.