Beispiel #1
0
 public TaxCollectorMovement(sbyte MovementType, TaxCollectorBasicInformations BasicInfos, ulong PlayerId, string PlayerName)
 {
     this.MovementType = MovementType;
     this.BasicInfos   = BasicInfos;
     this.PlayerId     = PlayerId;
     this.PlayerName   = PlayerName;
 }
Beispiel #2
0
 public override void Deserialize(IDataReader reader)
 {
     MovementType = reader.ReadSByte();
     BasicInfos   = new TaxCollectorBasicInformations();
     BasicInfos.Deserialize(reader);
     PlayerId   = reader.ReadVarUhLong();
     PlayerName = reader.ReadUTF();
 }