go_dreamfactory/modules/battle/core.go
2023-02-07 18:47:10 +08:00

12 lines
185 B
Go

package battle
import "go_dreamfactory/pb"
type (
IClientMgr interface {
Shutdown(c *client)
BattleOutCmd(out *pb.BattleOutCmdPush)
BattleFinish(out *pb.BattleFinishPush)
}
)