Examples of onOutsideClick()


Examples of org.spout.vanilla.inventory.window.Window.onOutsideClick()

      if (args != null) {
        window.onClick(args);
      }
    } else if (message.getSlot() == -1) {
      window.setCursorItem(message.get());
      window.onOutsideClick();
    } else {
      Slot entry = window.getSlot(message.getSlot());
      if (entry != null) {
        window.onCreativeClick(entry.getInventory(), entry.getIndex(), message.get());
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.