1 // automatically generated by the FlatBuffers compiler, do not modify 2 3 package MyGame.Example; 4 5 import java.nio.*; 6 import java.lang.*; 7 import java.util.*; 8 import com.google.flatbuffers.*; 9 10 public class StructOfStructsT { 11 private MyGame.Example.AbilityT a; 12 private MyGame.Example.TestT b; 13 private MyGame.Example.AbilityT c; 14 getA()15 public MyGame.Example.AbilityT getA() { return a; } 16 setA(MyGame.Example.AbilityT a)17 public void setA(MyGame.Example.AbilityT a) { this.a = a; } 18 getB()19 public MyGame.Example.TestT getB() { return b; } 20 setB(MyGame.Example.TestT b)21 public void setB(MyGame.Example.TestT b) { this.b = b; } 22 getC()23 public MyGame.Example.AbilityT getC() { return c; } 24 setC(MyGame.Example.AbilityT c)25 public void setC(MyGame.Example.AbilityT c) { this.c = c; } 26 27 StructOfStructsT()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 35