• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // automatically generated by the FlatBuffers compiler, do not modify
2 
3 package MyGame.Example;
4 
5 import com.google.flatbuffers.BaseVector;
6 import com.google.flatbuffers.BooleanVector;
7 import com.google.flatbuffers.ByteVector;
8 import com.google.flatbuffers.Constants;
9 import com.google.flatbuffers.DoubleVector;
10 import com.google.flatbuffers.FlatBufferBuilder;
11 import com.google.flatbuffers.FloatVector;
12 import com.google.flatbuffers.IntVector;
13 import com.google.flatbuffers.LongVector;
14 import com.google.flatbuffers.ShortVector;
15 import com.google.flatbuffers.StringVector;
16 import com.google.flatbuffers.Struct;
17 import com.google.flatbuffers.Table;
18 import com.google.flatbuffers.UnionVector;
19 import java.nio.ByteBuffer;
20 import java.nio.ByteOrder;
21 
22 public class StructOfStructsT {
23   private MyGame.Example.AbilityT a;
24   private MyGame.Example.TestT b;
25   private MyGame.Example.AbilityT c;
26 
getA()27   public MyGame.Example.AbilityT getA() { return a; }
28 
setA(MyGame.Example.AbilityT a)29   public void setA(MyGame.Example.AbilityT a) { this.a = a; }
30 
getB()31   public MyGame.Example.TestT getB() { return b; }
32 
setB(MyGame.Example.TestT b)33   public void setB(MyGame.Example.TestT b) { this.b = b; }
34 
getC()35   public MyGame.Example.AbilityT getC() { return c; }
36 
setC(MyGame.Example.AbilityT c)37   public void setC(MyGame.Example.AbilityT c) { this.c = c; }
38 
39 
StructOfStructsT()40   public StructOfStructsT() {
41     this.a = new MyGame.Example.AbilityT();
42     this.b = new MyGame.Example.TestT();
43     this.c = new MyGame.Example.AbilityT();
44   }
45 }
46 
47