|
@@ -112,9 +112,34 @@ namespace ET
|
|
|
[ProtoMember(3)]
|
|
|
public string Message { get; set; }
|
|
|
|
|
|
-
|
|
|
+
|
|
|
[ProtoMember(4)]
|
|
|
- public long MyId { get; set; }
|
|
|
+ public long SceneId { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [ResponseType(nameof(G2C_EnterSceneReady))]
|
|
|
+ [Message(OuterMessage.C2G_EnterSceneReady)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class C2G_EnterSceneReady: ProtoObject, IRequest
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterMessage.G2C_EnterSceneReady)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class G2C_EnterSceneReady: ProtoObject, IResponse
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public int Error { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(3)]
|
|
|
+ public string Message { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
@@ -575,36 +600,38 @@ namespace ET
|
|
|
public const ushort Actor_TransferResponse = 10007;
|
|
|
public const ushort C2G_EnterMap = 10008;
|
|
|
public const ushort G2C_EnterMap = 10009;
|
|
|
- public const ushort MoveInfo = 10010;
|
|
|
- public const ushort UnitInfo = 10011;
|
|
|
- public const ushort M2C_CreateUnits = 10012;
|
|
|
- public const ushort M2C_CreateMyUnit = 10013;
|
|
|
- public const ushort M2C_StartSceneChange = 10014;
|
|
|
- public const ushort M2C_RemoveUnits = 10015;
|
|
|
- public const ushort C2M_PathfindingResult = 10016;
|
|
|
- public const ushort M2C_PathfindingResult = 10017;
|
|
|
- public const ushort C2M_Stop = 10018;
|
|
|
- public const ushort M2C_Stop = 10019;
|
|
|
- public const ushort C2G_Ping = 10020;
|
|
|
- public const ushort G2C_Ping = 10021;
|
|
|
- public const ushort G2C_Test = 10022;
|
|
|
- public const ushort C2M_Reload = 10023;
|
|
|
- public const ushort M2C_Reload = 10024;
|
|
|
- public const ushort C2R_Login = 10025;
|
|
|
- public const ushort R2C_Login = 10026;
|
|
|
- public const ushort C2G_LoginGate = 10027;
|
|
|
- public const ushort G2C_LoginGate = 10028;
|
|
|
- public const ushort C2G_CreatePlayer = 10029;
|
|
|
- public const ushort G2C_CreatePlayer = 10030;
|
|
|
- public const ushort C2G_BindPlayer = 10031;
|
|
|
- public const ushort G2C_BindPlayer = 10032;
|
|
|
- public const ushort G2C_TestHotfixMessage = 10033;
|
|
|
- public const ushort C2M_TestRobotCase = 10034;
|
|
|
- public const ushort M2C_TestRobotCase = 10035;
|
|
|
- public const ushort C2M_TransferMap = 10036;
|
|
|
- public const ushort M2C_TransferMap = 10037;
|
|
|
- public const ushort C2G_Benchmark = 10038;
|
|
|
- public const ushort G2C_Benchmark = 10039;
|
|
|
- public const ushort R2C_Disconnect = 10040;
|
|
|
+ public const ushort C2G_EnterSceneReady = 10010;
|
|
|
+ public const ushort G2C_EnterSceneReady = 10011;
|
|
|
+ public const ushort MoveInfo = 10012;
|
|
|
+ public const ushort UnitInfo = 10013;
|
|
|
+ public const ushort M2C_CreateUnits = 10014;
|
|
|
+ public const ushort M2C_CreateMyUnit = 10015;
|
|
|
+ public const ushort M2C_StartSceneChange = 10016;
|
|
|
+ public const ushort M2C_RemoveUnits = 10017;
|
|
|
+ public const ushort C2M_PathfindingResult = 10018;
|
|
|
+ public const ushort M2C_PathfindingResult = 10019;
|
|
|
+ public const ushort C2M_Stop = 10020;
|
|
|
+ public const ushort M2C_Stop = 10021;
|
|
|
+ public const ushort C2G_Ping = 10022;
|
|
|
+ public const ushort G2C_Ping = 10023;
|
|
|
+ public const ushort G2C_Test = 10024;
|
|
|
+ public const ushort C2M_Reload = 10025;
|
|
|
+ public const ushort M2C_Reload = 10026;
|
|
|
+ public const ushort C2R_Login = 10027;
|
|
|
+ public const ushort R2C_Login = 10028;
|
|
|
+ public const ushort C2G_LoginGate = 10029;
|
|
|
+ public const ushort G2C_LoginGate = 10030;
|
|
|
+ public const ushort C2G_CreatePlayer = 10031;
|
|
|
+ public const ushort G2C_CreatePlayer = 10032;
|
|
|
+ public const ushort C2G_BindPlayer = 10033;
|
|
|
+ public const ushort G2C_BindPlayer = 10034;
|
|
|
+ public const ushort G2C_TestHotfixMessage = 10035;
|
|
|
+ public const ushort C2M_TestRobotCase = 10036;
|
|
|
+ public const ushort M2C_TestRobotCase = 10037;
|
|
|
+ public const ushort C2M_TransferMap = 10038;
|
|
|
+ public const ushort M2C_TransferMap = 10039;
|
|
|
+ public const ushort C2G_Benchmark = 10040;
|
|
|
+ public const ushort G2C_Benchmark = 10041;
|
|
|
+ public const ushort R2C_Disconnect = 10042;
|
|
|
}
|
|
|
}
|