chat.go 454 B

123456789101112
  1. package nameRemote
  2. const (
  3. Chat_Push = "push" // 登录推送game,league,map历史消息
  4. Chat_Send = "send" // 发送消息
  5. Chat_Destory = "destory" // 销毁聊天室,清空聊天记录
  6. Chat_DelMsg = "delMsg" // 删除指定msgID的消息
  7. Chat_GroupJoin = "groupJoin" // 加入群组
  8. Chat_GroupQuit = "groupQuit" // 退出群组
  9. Chat_GroupPlayerChange = "groupPlayerChange" // 群组玩家修改
  10. )