2021-06-03 21:17:40 +00:00
|
|
|
// automatically generated by the FlatBuffers compiler, do not modify
|
|
|
|
|
|
|
|
package MyGame.Example;
|
|
|
|
|
2022-11-29 01:27:55 +00:00
|
|
|
import com.google.flatbuffers.BaseVector;
|
|
|
|
import com.google.flatbuffers.BooleanVector;
|
|
|
|
import com.google.flatbuffers.ByteVector;
|
|
|
|
import com.google.flatbuffers.Constants;
|
|
|
|
import com.google.flatbuffers.DoubleVector;
|
|
|
|
import com.google.flatbuffers.FlatBufferBuilder;
|
|
|
|
import com.google.flatbuffers.FloatVector;
|
|
|
|
import com.google.flatbuffers.LongVector;
|
|
|
|
import com.google.flatbuffers.StringVector;
|
|
|
|
import com.google.flatbuffers.Struct;
|
|
|
|
import com.google.flatbuffers.Table;
|
|
|
|
import com.google.flatbuffers.UnionVector;
|
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
import java.nio.ByteOrder;
|
2021-06-03 21:17:40 +00:00
|
|
|
|
|
|
|
class TestSimpleTableWithEnumT {
|
|
|
|
private int color;
|
|
|
|
|
|
|
|
public int getColor() { return color; }
|
|
|
|
|
|
|
|
public void setColor(int color) { this.color = color; }
|
|
|
|
|
|
|
|
|
|
|
|
public TestSimpleTableWithEnumT() {
|
|
|
|
this.color = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|