Package org.getspout.spoutapi.packet

Examples of org.getspout.spoutapi.packet.PacketComboBox


   */
  public ComboBox setOpen(boolean open, boolean sendPacket) {
    if (sendPacket) {
      if (open != this.open) {
        this.open = open;
        PacketComboBox packet = new PacketComboBox(this);
        getScreen().getPlayer().sendPacket(packet);
      }
    }

    this.open = open;
View Full Code Here

TOP

Related Classes of org.getspout.spoutapi.packet.PacketComboBox

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.