mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
31 lines
797 B
Go
31 lines
797 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 AiStringKeyData struct {
|
|
Value string
|
|
}
|
|
|
|
const TypeId_AiStringKeyData = -307888654
|
|
|
|
func (*AiStringKeyData) GetTypeId() int32 {
|
|
return -307888654
|
|
}
|
|
|
|
func NewAiStringKeyData(_buf map[string]interface{}) (_v *AiStringKeyData, err error) {
|
|
_v = &AiStringKeyData{}
|
|
{ var _ok_ bool; if _v.Value, _ok_ = _buf["value"].(string); !_ok_ { err = errors.New("value error"); return } }
|
|
return
|
|
}
|
|
|