Package games.stendhal.client.entity

Examples of games.stendhal.client.entity.Entity


   */
  public void onChangedAdded(final RPObject object, final RPObject changes) {
    final IEntity iEntity = objects.get(FQID.create(object));

    if (iEntity instanceof Entity) {
      final Entity entity = (Entity) iEntity;

      entity.onChangedAdded(object, changes);

      EventDispatcher.dispatchEvents(changes, entity);
    }
  }
View Full Code Here

TOP

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

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.