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;
}