Package mekanism.common.network.PacketRemoveUpgrade

Examples of mekanism.common.network.PacketRemoveUpgrade.RemoveUpgradeMessage


  public void mouseClicked(int xAxis, int yAxis, int button)
  {
    if(xAxis >= 179 && xAxis <= 198 && yAxis >= 47 && yAxis <= 54)
    {
            SoundHandler.playSound("gui.button.press");
      Mekanism.packetHandler.sendToServer(new RemoveUpgradeMessage(Coord4D.get(tileEntity), (byte)0));
    }

    if(xAxis >= 179 && xAxis <= 198 && yAxis >= 57 && yAxis <= 64)
    {
            SoundHandler.playSound("gui.button.press");
      Mekanism.packetHandler.sendToServer(new RemoveUpgradeMessage(Coord4D.get(tileEntity), (byte)1));
    }

    if(xAxis >= 180 && xAxis <= 196 && yAxis >= 11 && yAxis <= 27)
    {
      offsetX(-26);
View Full Code Here

TOP

Related Classes of mekanism.common.network.PacketRemoveUpgrade.RemoveUpgradeMessage

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.