mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-07 13:53:38 +00:00
20 lines
333 B
C#
20 lines
333 B
C#
// <auto-generated>
|
|
// automatically generated by the FlatBuffers compiler, do not modify
|
|
// </auto-generated>
|
|
|
|
namespace MyGame.Example
|
|
{
|
|
|
|
#if ENABLE_JSON_SERIALIZATION
|
|
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
|
|
#endif
|
|
public enum TestEnum : sbyte
|
|
{
|
|
A = 0,
|
|
B = 1,
|
|
C = 2,
|
|
};
|
|
|
|
|
|
}
|