Package games.stendhal.client.entity

Examples of games.stendhal.client.entity.Door


   */
  @Override
  protected void buildActions(final List<String> list) {
    super.buildActions(list);

    Door door = (Door) entity;
    if (door != null && door.isOpen()) {
      list.add(ActionType.CLOSE.getRepresentation());
    } else {
      list.add(ActionType.OPEN.getRepresentation());

    }
View Full Code Here

TOP

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

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.