mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
Tested: on Linux for Java and C# Bug: 15781151 Change-Id: I7cb97bcc01d986cac2b24aaf7cb29521ddaa2f6b
18 lines
305 B
C#
18 lines
305 B
C#
// automatically generated, do not modify
|
|
|
|
namespace MyGame.Example
|
|
{
|
|
|
|
public class Any
|
|
{
|
|
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]; }
|
|
};
|
|
|
|
|
|
}
|