handler_player_logout.go 260 B

12345678910111213
  1. //@Author : KaiShin
  2. //@Time : 2021/11/1
  3. package handler
  4. import (
  5. "call_center/call/rpc/internal/core"
  6. "call_center/call/rpc/pb"
  7. )
  8. func PlayerLogout(server *core.Server, id string) {
  9. server.KickPlayer(id, int32(pb.ErrorReason_PLAYER_CALL_LOGOUT))
  10. }