act_pve.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. // <auto-generated>
  2. // Input: act_pve.proto
  3. // DO NOT EDIT!
  4. // </auto-generated>
  5. using XGame.Framework.Network;
  6. namespace FL.Network
  7. {
  8. /// <summary> id=201000 </summary>
  9. public sealed partial class ActPvePush : IMsgPush
  10. {
  11. int IMessage.InstanceID { get; set; }
  12. object IMessage.Context { get; set; }
  13. int IMessage.ProtocolID => 201000;
  14. public void Clear()
  15. {
  16. }
  17. /// <summary> 关卡ID </summary>
  18. public int pveId;
  19. /// <summary> 每场pve战斗唯一标识 </summary>
  20. public string fightKey;
  21. /// <summary> 最后一次结算时间 </summary>
  22. public int lastTime;
  23. /// <summary> 在线奖励 </summary>
  24. public System.Collections.Generic.List<lineRwd> online;
  25. /// <summary> 离线奖励 </summary>
  26. public System.Collections.Generic.List<lineRwd> offline;
  27. /// <summary> 任务累计数据结构 </summary>
  28. public System.Collections.Generic.List<TaskNids> nids;
  29. /// <summary> 任务奖励 </summary>
  30. public int[] taskRwd;
  31. /// <summary> 当前任务组 </summary>
  32. public int taskZu;
  33. }
  34. /// <summary> id=201001 </summary>
  35. public sealed partial class ActPvePveIdPush : IMsgPush
  36. {
  37. int IMessage.InstanceID { get; set; }
  38. object IMessage.Context { get; set; }
  39. int IMessage.ProtocolID => 201001;
  40. public void Clear()
  41. {
  42. }
  43. public int pveId;
  44. public string fightKey;
  45. }
  46. /// <summary> id=201002 </summary>
  47. public sealed partial class ActPveOfflinePush : IMsgPush
  48. {
  49. int IMessage.InstanceID { get; set; }
  50. object IMessage.Context { get; set; }
  51. int IMessage.ProtocolID => 201002;
  52. public void Clear()
  53. {
  54. }
  55. public System.Collections.Generic.List<lineRwd> offline;
  56. }
  57. /// <summary> id=201003 </summary>
  58. public sealed partial class ActPveLastTimePush : IMsgPush
  59. {
  60. int IMessage.InstanceID { get; set; }
  61. object IMessage.Context { get; set; }
  62. int IMessage.ProtocolID => 201003;
  63. public void Clear()
  64. {
  65. }
  66. public int lastTime;
  67. public System.Collections.Generic.List<lineRwd> online;
  68. }
  69. /// <summary> id=201004 </summary>
  70. public sealed partial class ActPveTaskZuPush : IMsgPush
  71. {
  72. int IMessage.InstanceID { get; set; }
  73. object IMessage.Context { get; set; }
  74. int IMessage.ProtocolID => 201004;
  75. public void Clear()
  76. {
  77. }
  78. public int taskZu;
  79. public int[] taskRwd;
  80. public System.Collections.Generic.List<TaskNids> nids;
  81. }
  82. }