Package org.rsbot.client

Examples of org.rsbot.client.Model


   *
   * @return The RSModel, or null if unavailable.
   */
  public RSModel getModel() {
    try {
      final Model model = obj.getModel();
      if (model != null && model.getXPoints() != null) {
        return new RSObjectModel(methods, model, obj);
      }
    } catch (final AbstractMethodError ignored) {
    }
    return null;
View Full Code Here


  }

  public RSModel getModel() {
    final org.rsbot.client.RSCharacter c = getAccessor();
    if (c != null) {
      final Model model = c.getModel();
      if (model != null) {
        return new RSCharacterModel(methods, model, c);
      }
    }
    return null;
View Full Code Here

TOP

Related Classes of org.rsbot.client.Model

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.