2016-05-26 13:26:58 +00:00
|
|
|
// automatically generated by the FlatBuffers compiler, do not modify
|
2014-01-28 00:52:49 +00:00
|
|
|
|
|
|
|
package MyGame.Example;
|
|
|
|
|
2015-04-06 23:42:08 +00:00
|
|
|
public final class Color {
|
|
|
|
private Color() { }
|
2014-07-17 22:12:37 +00:00
|
|
|
public static final byte Red = 1;
|
|
|
|
public static final byte Green = 2;
|
|
|
|
public static final byte Blue = 8;
|
2014-09-18 19:28:10 +00:00
|
|
|
|
2016-07-15 13:35:24 +00:00
|
|
|
public static final String[] names = { "Red", "Green", "", "", "", "", "", "Blue", };
|
2014-09-18 19:28:10 +00:00
|
|
|
|
|
|
|
public static String name(int e) { return names[e - Red]; }
|
2016-07-15 13:35:24 +00:00
|
|
|
}
|
2014-01-28 00:52:49 +00:00
|
|
|
|