blob: 47e337a348a0e29dbcb88b276d0743798aacb70e [file] [log] [blame]
James Kuszmaul8e62b022022-03-22 09:33:25 -07001// automatically generated by the FlatBuffers compiler, do not modify
2
3package MyGame.Example;
4
5import java.nio.*;
6import java.lang.*;
7import java.util.*;
8import com.google.flatbuffers.*;
9
10public class StructOfStructsT {
11 private MyGame.Example.AbilityT a;
12 private MyGame.Example.TestT b;
13 private MyGame.Example.AbilityT c;
14
15 public MyGame.Example.AbilityT getA() { return a; }
16
17 public void setA(MyGame.Example.AbilityT a) { this.a = a; }
18
19 public MyGame.Example.TestT getB() { return b; }
20
21 public void setB(MyGame.Example.TestT b) { this.b = b; }
22
23 public MyGame.Example.AbilityT getC() { return c; }
24
25 public void setC(MyGame.Example.AbilityT c) { this.c = c; }
26
27
28 public StructOfStructsT() {
29 this.a = new MyGame.Example.AbilityT();
30 this.b = new MyGame.Example.TestT();
31 this.c = new MyGame.Example.AbilityT();
32 }
33}
34