|
@@ -531,6 +531,34 @@ namespace ET
|
|
|
|
|
|
}
|
|
|
|
|
|
+ [ResponseType(nameof(G2C_RemoveUnit))]
|
|
|
+ [Message(OuterMessage.C2G_RemoveUnit)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class C2G_RemoveUnit: ProtoObject, IActorLocationRequest
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public int UnitId { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ [Message(OuterMessage.G2C_RemoveUnit)]
|
|
|
+ [ProtoContract]
|
|
|
+ public partial class G2C_RemoveUnit: ProtoObject, IActorLocationResponse
|
|
|
+ {
|
|
|
+ [ProtoMember(1)]
|
|
|
+ public int RpcId { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(2)]
|
|
|
+ public int Error { get; set; }
|
|
|
+
|
|
|
+ [ProtoMember(3)]
|
|
|
+ public string Message { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
[Message(OuterMessage.G2C_TestHotfixMessage)]
|
|
|
[ProtoContract]
|
|
|
public partial class G2C_TestHotfixMessage: ProtoObject, IMessage
|
|
@@ -648,11 +676,13 @@ namespace ET
|
|
|
public const ushort G2C_BindPlayer = 10034;
|
|
|
public const ushort C2G_AddUnitsToMap = 10035;
|
|
|
public const ushort G2C_AddUnitsToMap = 10036;
|
|
|
- public const ushort G2C_TestHotfixMessage = 10037;
|
|
|
- public const ushort C2M_TestRobotCase = 10038;
|
|
|
- public const ushort M2C_TestRobotCase = 10039;
|
|
|
- public const ushort C2G_Benchmark = 10040;
|
|
|
- public const ushort G2C_Benchmark = 10041;
|
|
|
- public const ushort R2C_Disconnect = 10042;
|
|
|
+ public const ushort C2G_RemoveUnit = 10037;
|
|
|
+ public const ushort G2C_RemoveUnit = 10038;
|
|
|
+ public const ushort G2C_TestHotfixMessage = 10039;
|
|
|
+ public const ushort C2M_TestRobotCase = 10040;
|
|
|
+ public const ushort M2C_TestRobotCase = 10041;
|
|
|
+ public const ushort C2G_Benchmark = 10042;
|
|
|
+ public const ushort G2C_Benchmark = 10043;
|
|
|
+ public const ushort R2C_Disconnect = 10044;
|
|
|
}
|
|
|
}
|