James Kuszmaul | 8e62b02 | 2022-03-22 09:33:25 -0700 | [diff] [blame^] | 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 | |
| 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 | |