Package packets.s2cpackets

Examples of packets.s2cpackets.S0x1D


   * To be called when an entity has to be unloaded
   */
  public void removeEntity(Entity entity) {
    if(entities.containsKey(entity.geteid())) {
      entities.remove(entity.geteid());
      SPacket p = new S0x1D(entity);
      getWorldState().connectionManager().sendPacketToAll(p);
    }
   
  }
View Full Code Here

TOP

Related Classes of packets.s2cpackets.S0x1D

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.