Exemplo n.º 1
0
 public TaxCollectorMovement(TaxCollectorBasicInformations basicInfos, byte movementType, ulong playerId, string playerName)
 {
     m_basicInfos   = basicInfos;
     m_movementType = movementType;
     m_playerId     = playerId;
     m_playerName   = playerName;
 }
Exemplo n.º 2
0
 public override void Deserialize(IDataReader reader)
 {
     m_basicInfos = new TaxCollectorBasicInformations();
     m_basicInfos.Deserialize(reader);
     m_movementType = reader.ReadByte();
     m_playerId     = reader.ReadVarUhLong();
     m_playerName   = reader.ReadUTF();
 }