mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +00:00
35 lines
774 B
Go
35 lines
774 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 (
|
||
|
"demo/luban"
|
||
|
)
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
type AiIntKeyData struct {
|
||
|
Value int32
|
||
|
}
|
||
|
|
||
|
const TypeId_AiIntKeyData = -342751904
|
||
|
|
||
|
func (*AiIntKeyData) GetTypeId() int32 {
|
||
|
return -342751904
|
||
|
}
|
||
|
|
||
|
func NewAiIntKeyData(_buf *luban.ByteBuf) (_v *AiIntKeyData, err error) {
|
||
|
_v = &AiIntKeyData{}
|
||
|
{ if _v.Value, err = _buf.ReadInt(); err != nil { err = errors.New("error"); return } }
|
||
|
return
|
||
|
}
|
||
|
|