コード例 #1
0
 public override void Deserialize(ICustomDataReader reader)
 {
     this.Stats = new CharacterCharacteristicsInformations();
     this.Stats.Deserialize(reader);
 }
コード例 #2
0
 public SlaveSwitchContextMessage InitSlaveSwitchContextMessage(double MasterId, double SlaveId, SpellItem[] SlaveSpells, CharacterCharacteristicsInformations SlaveStats, Shortcut[] Shortcuts)
 {
     this.MasterId    = MasterId;
     this.SlaveId     = SlaveId;
     this.SlaveSpells = SlaveSpells;
     this.SlaveStats  = SlaveStats;
     this.Shortcuts   = Shortcuts;
     return(this);
 }
コード例 #3
0
 public CharacterStatsListMessage InitCharacterStatsListMessage(CharacterCharacteristicsInformations Stats)
 {
     this.Stats = Stats;
     return(this);
 }