Example #1
0
 public void AppendToPacket(BinaryStream binaryStream)
 {
     binaryStream.AppendInt((int)Field);
     binaryStream.AppendDouble(Value);
 }
Example #2
0
 public static void AppendProperty(this BinaryStream stream, ItemProperty property)
 {
     stream.AppendInt((int)property.Field);
     stream.AppendDouble(property.Value);
 }