File: Race.go

package info (click to toggle)
golang-github-google-flatbuffers 24.3.25-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 17,356 kB
  • sloc: cpp: 49,726; python: 6,901; cs: 5,566; java: 4,370; ansic: 2,512; php: 1,460; javascript: 1,053; xml: 1,016; sh: 870; makefile: 13
file content (35 lines) | stat: -rw-r--r-- 587 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Code generated by the FlatBuffers compiler. DO NOT EDIT.

package Example

import "strconv"

type Race int8

const (
	RaceNone  Race = -1
	RaceHuman Race = 0
	RaceDwarf Race = 1
	RaceElf   Race = 2
)

var EnumNamesRace = map[Race]string{
	RaceNone:  "None",
	RaceHuman: "Human",
	RaceDwarf: "Dwarf",
	RaceElf:   "Elf",
}

var EnumValuesRace = map[string]Race{
	"None":  RaceNone,
	"Human": RaceHuman,
	"Dwarf": RaceDwarf,
	"Elf":   RaceElf,
}

func (v Race) String() string {
	if s, ok := EnumNamesRace[v]; ok {
		return s
	}
	return "Race(" + strconv.FormatInt(int64(v), 10) + ")"
}