1 package XMLSteeringProperties;
2
3 import javax.xml.bind.annotation.XmlElement;
4 import javax.xml.bind.annotation.XmlRootElement;
5
6 /**
7 *
8 * @author Marki
9 */
10 @XmlRootElement
11 public class XMLTarget_packet {
12
13 @XmlElement
14 public int xTargetLocation;
15
16 @XmlElement
17 public int yTargetLocation;
18
19 @XmlElement
20 public int zTargetLocation;
21
22 @XmlElement
23 public XMLForce_packet force_packet;
24 }