好友消息优化

This commit is contained in:
hahwu 2025-03-28 10:58:57 +08:00
parent c86a66252d
commit 815d896283

View File

@ -3,6 +3,7 @@ package game
import (
"encoding/gob"
"server/game/mod/limitedTimeEvent"
"server/game/mod/msg"
)
type PlayerSimpleData struct {
@ -56,4 +57,5 @@ type ActivityInfo struct {
func init() {
gob.Register(&limitedTimeEvent.MoneyCat{})
gob.Register(&limitedTimeEvent.LuckyCat{})
gob.Register(&msg.HandbookMsg{})
}