Package games.stendhal.client.entity

Examples of games.stendhal.client.entity.IEntity.release()


      final Iterator<IEntity> it = iterator();

      while (it.hasNext()) {
        final IEntity entity = it.next();
        logger.debug("Residual entity: " + entity);
        entity.release();
      }

      objects.clear();
    }
  }
View Full Code Here


    if (entity != null) {
      for (GameObjectListener listener : gameObjectListeners) {
        listener.removeEntity(entity);
      }
      entity.release();
    }
  }

  /**
   * A slot object was added.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.