Package crazypants.enderio.conduit.packet

Examples of crazypants.enderio.conduit.packet.PacketRedstoneConduitSignalColor


  @Override
  public void actionPerformed(GuiButton guiButton) {
    super.actionPerformed(guiButton);
    if(guiButton.id == ID_COLOR_BUTTON) {
      insCon.setSignalColor(gui.getDir(), DyeColor.values()[cb.getColorIndex()]);
      PacketHandler.INSTANCE.sendToServer(new PacketRedstoneConduitSignalColor(insCon, gui.getDir()));
    }
  }
View Full Code Here

TOP

Related Classes of crazypants.enderio.conduit.packet.PacketRedstoneConduitSignalColor

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.