This commit is contained in:
hahwu 2025-03-18 11:31:35 +08:00
parent 6e0d3a2709
commit 5d00d87e18

View File

@ -1,5 +1,10 @@
package game package game
import (
"encoding/gob"
"server/game/mod/limitedTimeEvent"
)
type PlayerSimpleData struct { type PlayerSimpleData struct {
Uid int Uid int
Name string Name string
@ -46,3 +51,8 @@ type ActivityInfo struct {
Name string Name string
Info interface{} Info interface{}
} }
func init() {
gob.Register(&limitedTimeEvent.MoneyCat{})
}