flatbuffers/tests/MyGame/Example/Any.java

14 lines
290 B
Java

// automatically generated, do not modify
package MyGame.Example;
public class Any {
public static final byte NONE = 0;
public static final byte Monster = 1;
private static final String[] names = { "NONE", "Monster", };
public static String name(int e) { return names[e]; }
};