This commit is contained in:
aozhiwei 2024-11-22 13:20:44 +08:00
parent 6e16128598
commit badf6a452a

View File

@ -7,8 +7,16 @@ import (
type Item struct { type Item struct {
mtb.Item mtb.Item
buffList []int32
} }
type ItemTable struct { type ItemTable struct {
f5.IdMetaTable[Item] f5.IdMetaTable[Item]
} }
func (this *Item) Init1() {
}
func (this *Item) GetBuffList() []int32 {
return this.buffList
}