35 lines
967 B
Go
35 lines
967 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
|
|
|
|
type GameTrainlv struct {
|
|
_dataList []*GameTrainlvData
|
|
}
|
|
|
|
func NewGameTrainlv(_buf []map[string]interface{}) (*GameTrainlv, error) {
|
|
_dataList := make([]*GameTrainlvData, 0, len(_buf))
|
|
for _, _ele_ := range _buf {
|
|
if _v, err2 := DeserializeGameTrainlvData(_ele_); err2 != nil {
|
|
return nil, err2
|
|
} else {
|
|
_dataList = append(_dataList, _v)
|
|
}
|
|
}
|
|
return &GameTrainlv{_dataList:_dataList}, nil
|
|
}
|
|
|
|
func (table *GameTrainlv) GetDataList() []*GameTrainlvData {
|
|
return table._dataList
|
|
}
|
|
|
|
func (table *GameTrainlv) Get(index int) *GameTrainlvData {
|
|
return table._dataList[index]
|
|
}
|
|
|