Package org.spout.vanilla.event.window

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


  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

Related Classes of org.spout.vanilla.event.window.WindowPropertyEvent

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.