19 lines
348 B
C#
19 lines
348 B
C#
|
|
// <auto-generated>
|
||
|
|
// automatically generated by the FlatBuffers compiler, do not modify
|
||
|
|
// </auto-generated>
|
||
|
|
|
||
|
|
namespace MyGame.Example
|
||
|
|
{
|
||
|
|
|
||
|
|
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
|
||
|
|
[System.FlagsAttribute]
|
||
|
|
public enum LongEnum : ulong
|
||
|
|
{
|
||
|
|
LongOne = 2,
|
||
|
|
LongTwo = 4,
|
||
|
|
LongBig = 1099511627776,
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
}
|