Package games.stendhal.client.entity

Examples of games.stendhal.client.entity.Sign


   * gets the ActionType for the requested action
   *
   * @return ActionType
   */
  private ActionType getActionType() {
    Sign sign = (Sign) entity;
    if (sign == null) {
      // The user switched maps, but we still need a reasonable return
      // value
      return ActionType.LOOK;
    }
   
    String action = sign.getAction();
    if (action == null) {
      return ActionType.LOOK;
    }

    try {
View Full Code Here

TOP

Related Classes of games.stendhal.client.entity.Sign

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.