This commit is contained in:
aozhiwei 2024-09-20 14:01:54 +08:00
parent cc94e4a81a
commit 9446c8a096
3 changed files with 16 additions and 1 deletions

View File

@ -188,6 +188,8 @@ type MatchMgr interface {
} }
type HistoryMgr interface { type HistoryMgr interface {
AddBattle(string, int32, int32)
PushLastBattleInfo(Player)
} }
type WspListener interface { type WspListener interface {

View File

@ -1,7 +1,7 @@
package history package history
import ( import (
"main/common"
) )
type historyMgr struct { type historyMgr struct {
@ -13,3 +13,11 @@ func (this *historyMgr) Init() {
func (this *historyMgr) UnInit() { func (this *historyMgr) UnInit() {
} }
func (this *historyMgr) AddBattle(accountId string, mapId int32, modeId int32) {
}
func (this *historyMgr) PushLastBattleInfo(hum common.Player) {
}

View File

@ -0,0 +1,5 @@
package history
type user struct {
accountId string
}