Package org.spoutcraft.client.packet

Examples of org.spoutcraft.client.packet.SpoutPacket.run()


      Iterator<CompressablePacket> i = instance.decompressed.iterator();
      while (i.hasNext()) {
        SpoutPacket packet = i.next();
        try {
          SpoutClient.getHandle().mcProfiler.startSection(packet.getPacketType().name());
          packet.run(SpoutClient.getHandle().thePlayer.entityId);
          i.remove();
        } catch (Exception e) {
          System.out.println("------------------------");
          System.out.println("Unexpected Exception: " + packet.getPacketType());
          e.printStackTrace();
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.