Package pneumaticCraft.common.network

Examples of pneumaticCraft.common.network.PacketGuiButton


        }
    }

    @Override
    protected void actionPerformed(GuiButton button){
        NetworkHandler.sendToServer(new PacketGuiButton(te, button.id));
    }
View Full Code Here


                        stat.closeWindow();
                    }
                }
            }
        }
        NetworkHandler.sendToServer(new PacketGuiButton(te, widget.getID()));
    }
View Full Code Here

     * Fired when a control is clicked. This is the equivalent of
     * ActionListener.actionPerformed(ActionEvent e).
     */
    @Override
    protected void actionPerformed(GuiButton button){
        NetworkHandler.sendToServer(new PacketGuiButton(te, button.id));
    }
View Full Code Here

        buttonList.add(new GuiButton(3, x + 60, y, 30, 20, "+1"));
    }

    @Override
    protected void actionPerformed(GuiButton button){
        NetworkHandler.sendToServer(new PacketGuiButton(te, button.id));
    }
View Full Code Here

                if(++widgetPage > maxPage) widgetPage = 0;
                updateVisibleProgWidgets();
                return;
        }

        NetworkHandler.sendToServer(new PacketGuiButton(te, button.id));
    }
View Full Code Here

TOP

Related Classes of pneumaticCraft.common.network.PacketGuiButton

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.