Package buildcraft.core.network

Examples of buildcraft.core.network.TilePacketWrapper


  private String owner = "[BuildCraft]";
  private RFBattery battery;

  public TileBuildCraft() {
    if (!updateWrappers.containsKey(this.getClass())) {
      updateWrappers.put(this.getClass(), new TilePacketWrapper(this.getClass()));
    }

    if (!descriptionWrappers.containsKey(this.getClass())) {
      descriptionWrappers.put(this.getClass(), new TilePacketWrapper(this.getClass()));
    }

    updatePacket = updateWrappers.get(this.getClass());
    descriptionPacket = descriptionWrappers.get(this.getClass());
  }
View Full Code Here


    this.transport = transport;
    this.item = item;

    if (!networkWrappers.containsKey(this.getClass())) {
      networkWrappers
          .put(this.getClass(), new TilePacketWrapper(new Class[]{TileGenericPipe.class, this.transport.getClass()}));
    }
  }
View Full Code Here

TOP

Related Classes of buildcraft.core.network.TilePacketWrapper

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.