12 lines
185 B
Go
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)
|
|
}
|
|
)
|