forked from BigfootDev/flatbuffers
- update C++ monster_test::Color to unsigned type - update Go Color:ubyte in the go_test.go - add workaround for unsigned enum in java test - sync generate.bat and generate.sh
18 lines
269 B
Go
18 lines
269 B
Go
// Code generated by the FlatBuffers compiler. DO NOT EDIT.
|
|
|
|
package Example
|
|
|
|
type Color = byte
|
|
const (
|
|
ColorRed Color = 1
|
|
ColorGreen Color = 2
|
|
ColorBlue Color = 8
|
|
)
|
|
|
|
var EnumNamesColor = map[Color]string{
|
|
ColorRed:"Red",
|
|
ColorGreen:"Green",
|
|
ColorBlue:"Blue",
|
|
}
|
|
|