123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- // <auto-generated>
- // Input: act_pve.proto
- // DO NOT EDIT!
- // </auto-generated>
- using XGame.Framework.Network;
- namespace FL.Network
- {
- /// <summary> id=201000 </summary>
- public sealed partial class ActPvePush : IMsgPush
- {
- int IMessage.InstanceID { get; set; }
- object IMessage.Context { get; set; }
- int IMessage.ProtocolID => 201000;
- public void Clear()
- {
- }
- /// <summary> 关卡ID </summary>
- public int pveId;
- /// <summary> 每场pve战斗唯一标识 </summary>
- public string fightKey;
- /// <summary> 最后一次结算时间 </summary>
- public int lastTime;
- /// <summary> 在线奖励 </summary>
- public System.Collections.Generic.List<lineRwd> online;
- /// <summary> 离线奖励 </summary>
- public System.Collections.Generic.List<lineRwd> offline;
- /// <summary> 任务累计数据结构 </summary>
- public System.Collections.Generic.List<TaskNids> nids;
- /// <summary> 任务奖励 </summary>
- public int[] taskRwd;
- /// <summary> 当前任务组 </summary>
- public int taskZu;
- }
- /// <summary> id=201001 </summary>
- public sealed partial class ActPvePveIdPush : IMsgPush
- {
- int IMessage.InstanceID { get; set; }
- object IMessage.Context { get; set; }
- int IMessage.ProtocolID => 201001;
- public void Clear()
- {
- }
- public int pveId;
- public string fightKey;
- }
- /// <summary> id=201002 </summary>
- public sealed partial class ActPveOfflinePush : IMsgPush
- {
- int IMessage.InstanceID { get; set; }
- object IMessage.Context { get; set; }
- int IMessage.ProtocolID => 201002;
- public void Clear()
- {
- }
- public System.Collections.Generic.List<lineRwd> offline;
- }
- /// <summary> id=201003 </summary>
- public sealed partial class ActPveLastTimePush : IMsgPush
- {
- int IMessage.InstanceID { get; set; }
- object IMessage.Context { get; set; }
- int IMessage.ProtocolID => 201003;
- public void Clear()
- {
- }
- public int lastTime;
- public System.Collections.Generic.List<lineRwd> online;
- }
- /// <summary> id=201004 </summary>
- public sealed partial class ActPveTaskZuPush : IMsgPush
- {
- int IMessage.InstanceID { get; set; }
- object IMessage.Context { get; set; }
- int IMessage.ProtocolID => 201004;
- public void Clear()
- {
- }
- public int taskZu;
- public int[] taskRwd;
- public System.Collections.Generic.List<TaskNids> nids;
- }
- }
|