This commit is contained in:
Ilia Denisov
2026-03-30 19:41:04 +02:00
parent a7793f5416
commit 92889b81ab
9 changed files with 0 additions and 609 deletions
-29
View File
@@ -1,29 +0,0 @@
// Code generated by the FlatBuffers compiler. DO NOT EDIT.
package order
import "strconv"
type Relation int8
const (
RelationWar Relation = 0
RelationPeace Relation = 1
)
var EnumNamesRelation = map[Relation]string{
RelationWar: "War",
RelationPeace: "Peace",
}
var EnumValuesRelation = map[string]Relation{
"War": RelationWar,
"Peace": RelationPeace,
}
func (v Relation) String() string {
if s, ok := EnumNamesRelation[v]; ok {
return s
}
return "Relation(" + strconv.FormatInt(int64(v), 10) + ")"
}