flatbuffers/tests/MyGame/Example/Any.go

36 lines
858 B
Go
Raw Normal View History

// Code generated by the FlatBuffers compiler. DO NOT EDIT.
package Example
import "strconv"
type Any byte
const (
AnyNONE Any = 0
AnyMonster Any = 1
2018-07-26 23:40:56 +00:00
AnyTestSimpleTableWithEnum Any = 2
AnyMyGame_Example2_Monster Any = 3
)
2018-07-26 23:40:56 +00:00
var EnumNamesAny = map[Any]string{
AnyNONE: "NONE",
AnyMonster: "Monster",
AnyTestSimpleTableWithEnum: "TestSimpleTableWithEnum",
AnyMyGame_Example2_Monster: "MyGame_Example2_Monster",
}
var EnumValuesAny = map[string]Any{
"NONE": AnyNONE,
"Monster": AnyMonster,
"TestSimpleTableWithEnum": AnyTestSimpleTableWithEnum,
"MyGame_Example2_Monster": AnyMyGame_Example2_Monster,
}
func (v Any) String() string {
if s, ok := EnumNamesAny[v]; ok {
return s
}
return "Any(" + strconv.FormatInt(int64(v), 10) + ")"
}