lobby.proto 207 B

12345678910111213
  1. syntax = "proto3";
  2. package protos;
  3. import "userinfo.proto";
  4. // 用户加入大厅
  5. message LobbyJoinPush {
  6. UserInfo UserInfo = 1;
  7. }
  8. // 用户离开大厅
  9. message LobbyLeavePush {
  10. int32 UserID = 1;
  11. }