コード例 #1
0
 public TaxCollectorMovement(TaxCollectorBasicInformations basicInfos, byte movementType, ulong playerId, string playerName)
 {
     m_basicInfos   = basicInfos;
     m_movementType = movementType;
     m_playerId     = playerId;
     m_playerName   = playerName;
 }
コード例 #2
0
 public TaxCollectorMovement(byte movementType, TaxCollectorBasicInformations basicInfos, ulong playerId, string playerName)
 {
     MovementType = movementType;
     BasicInfos   = basicInfos;
     PlayerId     = playerId;
     PlayerName   = playerName;
 }
コード例 #3
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();
 }