public override void Deserialize(BigEndianReader reader)
 {
     properties = Types.ProtocolTypeManager.GetInstance<Types.PaddockInformations>(reader.ReadShort());
     properties.Deserialize(reader);
 }
Example #2
0
 public override void Deserialize(ICustomDataInput reader)
 {
     properties = ProtocolTypeManager.GetInstance <Types.PaddockInformations>(reader.ReadShort());
     properties.Deserialize(reader);
 }
 public void Deserialize(IDataReader reader)
 {
     properties = ProtocolTypeManager.GetInstance <Types.PaddockInformations>(reader.ReadShort());
     properties.Deserialize(reader);
 }
 public override void Deserialize(BigEndianReader reader)
 {
     properties = Types.ProtocolTypeManager.GetInstance <Types.PaddockInformations>(reader.ReadShort());
     properties.Deserialize(reader);
 }