go_dreamfactory/sys/configure/structs/game.gameComData.go

30 lines
1009 B
Go

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
package cfg
import "errors"
type Game_gameComData struct {
Index string
Var string
Intr string
}
func (Game_gameComData) GetTypeId() int {
return -1518519171
}
func NewGame_gameComData(_buf map[string]interface{}) (_v *Game_gameComData, err error) {
_v = &Game_gameComData{}
{ var _ok_ bool; if _v.Index, _ok_ = _buf["index"].(string); !_ok_ { err = errors.New("index error"); return } }
{ var _ok_ bool; if _v.Var, _ok_ = _buf["var"].(string); !_ok_ { err = errors.New("var error"); return } }
{ var _ok_ bool; if _v.Intr, _ok_ = _buf["intr"].(string); !_ok_ { err = errors.New("intr error"); return } }
return
}