blob: 411bf8e32e2bf49a8a2a93fc4caf7fb7067e734a [file] [log] [blame]
Austin Schuhe89fa2d2019-08-14 20:24:23 -07001// automatically generated by the FlatBuffers compiler, do not modify
2
3package MyGame.Example;
4
5public final class TestEnum {
6 private TestEnum() { }
7 public static final byte A = 0;
8 public static final byte B = 1;
9 public static final byte C = 2;
10
11 public static final String[] names = { "A", "B", "C", };
12
13 public static String name(int e) { return names[e]; }
14}
15