-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathOSCTrackersSettingT.java
More file actions
64 lines (42 loc) · 1.49 KB
/
OSCTrackersSettingT.java
File metadata and controls
64 lines (42 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// automatically generated by the FlatBuffers compiler, do not modify
package solarxr_protocol.rpc;
import java.nio.*;
import java.lang.*;
import java.util.*;
import com.google.flatbuffers.*;
public class OSCTrackersSettingT {
private boolean head;
private boolean chest;
private boolean waist;
private boolean knees;
private boolean feet;
private boolean elbows;
private boolean hands;
private boolean toes;
public boolean getHead() { return head; }
public void setHead(boolean head) { this.head = head; }
public boolean getChest() { return chest; }
public void setChest(boolean chest) { this.chest = chest; }
public boolean getWaist() { return waist; }
public void setWaist(boolean waist) { this.waist = waist; }
public boolean getKnees() { return knees; }
public void setKnees(boolean knees) { this.knees = knees; }
public boolean getFeet() { return feet; }
public void setFeet(boolean feet) { this.feet = feet; }
public boolean getElbows() { return elbows; }
public void setElbows(boolean elbows) { this.elbows = elbows; }
public boolean getHands() { return hands; }
public void setHands(boolean hands) { this.hands = hands; }
public boolean getToes() { return toes; }
public void setToes(boolean toes) { this.toes = toes; }
public OSCTrackersSettingT() {
this.head = false;
this.chest = false;
this.waist = false;
this.knees = false;
this.feet = false;
this.elbows = false;
this.hands = false;
this.toes = false;
}
}