Files
bl/logic/service/common/playeri.go
昔念 24c413030f
All checks were successful
ci/woodpecker/push/my-first-workflow Pipeline was successful
实装大乱斗经验
2026-02-14 04:27:57 +08:00

22 lines
420 B
Go

package common
import (
"blazing/logic/service/fight/info"
"blazing/modules/player/model"
)
type PlayerI interface {
GetPlayerCaptureContext() *info.PlayerCaptureContext
Roll(int, int) (bool, float64, float64)
//SendPack(b []byte) error
Getfightinfo() info.Fightinfo
GetInfo() *model.PlayerInfo
InvitePlayer(PlayerI)
SetFightC(FightI)
QuitFight()
MessWin(bool)
CanFight() bool
SendPackCmd(uint32, any)
}