2014-01-28 00:52:49 +00:00
|
|
|
// automatically generated, do not modify
|
|
|
|
|
|
|
|
package MyGame.Example;
|
|
|
|
|
2015-04-06 23:42:08 +00:00
|
|
|
public final class Any {
|
|
|
|
private Any() { }
|
2014-01-28 00:52:49 +00:00
|
|
|
public static final byte NONE = 0;
|
|
|
|
public static final byte Monster = 1;
|
2014-09-18 19:28:10 +00:00
|
|
|
|
|
|
|
private static final String[] names = { "NONE", "Monster", };
|
|
|
|
|
|
|
|
public static String name(int e) { return names[e]; }
|
2014-01-28 00:52:49 +00:00
|
|
|
};
|
|
|
|
|