mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
33 lines
1.1 KiB
Go
33 lines
1.1 KiB
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 TestTestGlobal struct {
|
|
UnlockEquip int32
|
|
UnlockHero int32
|
|
}
|
|
|
|
const TypeId_TestTestGlobal = -12548655
|
|
|
|
func (*TestTestGlobal) GetTypeId() int32 {
|
|
return -12548655
|
|
}
|
|
|
|
func NewTestTestGlobal(_buf map[string]interface{}) (_v *TestTestGlobal, err error) {
|
|
_v = &TestTestGlobal{}
|
|
{ var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["unlock_equip"].(float64); !_ok_ { err = errors.New("unlock_equip error"); return }; _v.UnlockEquip = int32(_tempNum_) }
|
|
{ var _ok_ bool; var _tempNum_ float64; if _tempNum_, _ok_ = _buf["unlock_hero"].(float64); !_ok_ { err = errors.New("unlock_hero error"); return }; _v.UnlockHero = int32(_tempNum_) }
|
|
return
|
|
}
|
|
|