2014-09-09 18:46:13 +00:00
|
|
|
// automatically generated, do not modify
|
|
|
|
|
|
|
|
namespace MyGame.Example
|
|
|
|
{
|
|
|
|
|
|
|
|
public class Any
|
|
|
|
{
|
2014-09-18 19:28:10 +00:00
|
|
|
public static readonly byte NONE = 0;
|
|
|
|
public static readonly byte Monster = 1;
|
|
|
|
|
|
|
|
private static readonly string[] names = { "NONE", "Monster", };
|
|
|
|
|
|
|
|
public static string Name(int e) { return names[e]; }
|
2014-09-09 18:46:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|