com.zerotoheroes.hsgameentities.replaydata.meta.options.SendOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hs-game-entities Show documentation
Show all versions of hs-game-entities Show documentation
POJOs representing a Hearthstone game entity and game constants
package com.zerotoheroes.hsgameentities.replaydata.meta.options;
import javax.xml.bind.annotation.XmlAccessOrder;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorOrder;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import com.zerotoheroes.hsgameentities.replaydata.GameData;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToString;
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
@Builder
@XmlAccessorType(XmlAccessType.FIELD)
@XmlAccessorOrder(XmlAccessOrder.ALPHABETICAL)
@ToString
public class SendOption extends GameData {
@XmlAttribute(name = "option")
private int optionIndex;
@XmlAttribute(name = "position")
private int position;
@XmlAttribute(name = "suboption")
private int subOption = -1;
@XmlAttribute(name = "target")
private int target;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy