Examples of IMumbleLinkState


Examples of de.justi.yagw2api.mumblelink.IMumbleLinkState

      return false;
    }
    if (!(obj instanceof IMumbleLinkState)) {
      return false;
    }
    IMumbleLinkState other = (IMumbleLinkState) obj;
    if (!Objects.equal(this.avatarFront, other.getAvatarFront())) {
      return false;
    }
    if (!Objects.equal(this.avatarName, other.getAvatarName())) {
      return false;
    }
    if (!Objects.equal(this.avatarPosition, other.getAvatarPosition())) {
      return false;
    }
    if (!Objects.equal(this.avatarTop, other.getAvatarTop())) {
      return false;
    }
    if (!Objects.equal(this.cameraFront, other.getCameraFront())) {
      return false;
    }
    if (!Objects.equal(this.cameraPosition, other.getCameraPosition())) {
      return false;
    }
    if (!Objects.equal(this.cameraTop, other.getCameraTop())) {
      return false;
    }
    if (!Objects.equal(this.gameName, other.getGameName())) {
      return false;
    }
    if (!Objects.equal(this.uiTick, other.getUITick())) {
      return false;
    }
    if (!Objects.equal(this.uiVersion, other.getUIVersion())) {
      return false;
    }
    if (!Objects.equal(this.regionId, other.getRegionId())) {
      return false;
    }
    if (!Objects.equal(this.build, other.getBuild())) {
      return false;
    }
    if (!Objects.equal(this.mapId, other.getMapId())) {
      return false;
    }
    return true;
  }
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.