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