示例#1
0
 public DareInformations InitDareInformations(double DareId, CharacterBasicMinimalInformations Creator, long SubscriptionFee, long Jackpot, short MaxCountWinners, double EndDate, bool IsPrivate, int GuildId, int AllianceId, DareCriteria[] Criterions, double StartDate)
 {
     this.DareId          = DareId;
     this.Creator         = Creator;
     this.SubscriptionFee = SubscriptionFee;
     this.Jackpot         = Jackpot;
     this.MaxCountWinners = MaxCountWinners;
     this.EndDate         = EndDate;
     this.IsPrivate       = IsPrivate;
     this.GuildId         = GuildId;
     this.AllianceId      = AllianceId;
     this.Criterions      = Criterions;
     this.StartDate       = StartDate;
     return(this);
 }
示例#2
0
 public override void Deserialize(ICustomDataReader reader)
 {
     this.Leaver = new CharacterBasicMinimalInformations();
     this.Leaver.Deserialize(reader);
 }
示例#3
0
 public ArenaFighterLeaveMessage InitArenaFighterLeaveMessage(CharacterBasicMinimalInformations Leaver)
 {
     this.Leaver = Leaver;
     return(this);
 }