Package games.stendhal.client

Examples of games.stendhal.client.OutfitStore$OutfitRef


   *
   * @return A tile sprite containing all animation images.
   */
  @Override
  protected Sprite getAnimationSprite() {
    final OutfitStore store = OutfitStore.get();

    try {
      return store.getOutfit(((RPEntity) entity).getOutfit());
    } catch (final Exception e) {
      logger.warn("Cannot build outfit. Setting failsafe outfit.", e);
      return store.getFailsafeOutfit();
    }
  }
View Full Code Here

TOP

Related Classes of games.stendhal.client.OutfitStore$OutfitRef

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.