Examples of WindowPropertyEvent


Examples of org.spout.vanilla.event.window.WindowPropertyEvent

  public void setProperty(int id, int value) {
    properties.put(id, value);
    switch (owner.getEngine().getPlatform()) {
      case PROXY:
      case SERVER:
        getPlayer().getNetwork().callProtocolEvent(new WindowPropertyEvent(this, id, value), getPlayer());
        break;
      case CLIENT:
        // TODO: Window properties
        break;
      default:
View Full Code Here

Examples of org.spout.vanilla.event.window.WindowPropertyEvent

  public void setProperty(int id, int value) {
    properties.put(id, value);
    switch (VanillaPlugin.getInstance().getEngine().getPlatform()) {
      case PROXY:
      case SERVER:
        getPlayer().getNetwork().callProtocolEvent(new WindowPropertyEvent(this, id, value), getPlayer());
        break;
      case CLIENT:
        // TODO: Window properties
        break;
      default:
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.