Compare View

switch
from
...
to
 
Commits (2)
protocode.proto
... ... @@ -33,6 +33,8 @@ enum ProtoCode
33 33 RoleLuckySeekRpc = 125;
34 34 RoleLuckyRewardRpc = 126;
35 35 RoleCostDiamondAddSpRpc = 127;
  36 + RoleSurviveCarbonStartRpc = 128;
  37 + RoleSurviveCarbonEndRpc = 129;
36 38  
37 39 HeroEquipReferRpc = 201;
38 40 HeroFragmentCovertRpc = 202;
... ... @@ -75,6 +77,9 @@ enum ProtoCode
75 77 DispatchEndRpc = 803;
76 78 DispatchQuickRpc = 804;
77 79  
  80 + CarbonSurviveStartRpc = 901;
  81 + CarbonSurviveEndRpc = 902;
  82 +
78 83  
79 84 DisConnectNty = 1001;
80 85 RoleUpdatePropertyNty = 1002;
... ...
role.proto
... ... @@ -275,4 +275,19 @@ message RoleCostDiamondAddSpRsp {
275 275 message RoleTaskOpenNty {
276 276 map<int32,bool> circle_task = 1;
277 277 map<int32,bool> limit_task = 2;
278   -}
279 278 \ No newline at end of file
  279 +}
  280 +
  281 +
  282 +message RoleSurviveCarbonStartReq {
  283 + int32 carbon_id = 1;
  284 +}
  285 +
  286 +message RoleSurviveCarbonStartRsp {
  287 +}
  288 +
  289 +message RoleSurviveCarbonEndReq {
  290 +}
  291 +
  292 +message RoleSurviveCarbonEndRsp {
  293 + map<int32,int32> reward = 1;
  294 +}
... ...