|
|
|
@ -2650,4 +2650,35 @@ namespace ET
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
[ResponseType(nameof(M2C_CheatItemList))] |
|
|
|
|
[Message(OuterOpcode.C2M_CheatItemList)] |
|
|
|
|
[ProtoContract] |
|
|
|
|
public partial class C2M_CheatItemList: Object, IActorLocationRequest |
|
|
|
|
{ |
|
|
|
|
[ProtoMember(90)] |
|
|
|
|
public int RpcId { get; set; } |
|
|
|
|
|
|
|
|
|
[ProtoMember(1)] |
|
|
|
|
public List<int> ConfigIds = new List<int>(); |
|
|
|
|
|
|
|
|
|
[ProtoMember(2)] |
|
|
|
|
public List<int> Nums = new List<int>(); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
[Message(OuterOpcode.M2C_CheatItemList)] |
|
|
|
|
[ProtoContract] |
|
|
|
|
public partial class M2C_CheatItemList: Object, IActorLocationResponse |
|
|
|
|
{ |
|
|
|
|
[ProtoMember(90)] |
|
|
|
|
public int RpcId { get; set; } |
|
|
|
|
|
|
|
|
|
[ProtoMember(91)] |
|
|
|
|
public int Error { get; set; } |
|
|
|
|
|
|
|
|
|
[ProtoMember(92)] |
|
|
|
|
public string Message { get; set; } |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|