From c8888f89eed2b505d0774b9309518a89fb9bbb1e Mon Sep 17 00:00:00 2001 From: gaojie Date: Thu, 25 Apr 2019 14:52:06 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=8F=E6=9C=BA=E5=90=8D=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/MessageTypeProto.proto | 3 +++ protos/PlayerInfoProto.proto | 3 +++ 2 files changed, 6 insertions(+) diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index e0a1f97..b013dbe 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -139,6 +139,9 @@ enum MessageType{ // R 11700 RECONNECT_REQUEST = 11700; // RECONNECT_RESPONSE = 11701; + + RANDOMNAME_REQUEST = 11702; // 随机名字 + RANDOMNAME_RESPONSE = 11703; // S 11800 SUCCESS_RESPONSE = 11800; // 通用成功回复 diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index 813799f..aa22705 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -131,3 +131,6 @@ import "CommonProto.proto"; repeated ActivityInfo activityInfo =1; } + message RandomNameResponse{ + optional string randomName =1; + }