blob: e0a0bbfcf9d0087b8366190e83488df93093dd45 (
plain)
1
2
3
4
5
6
7
8
9
|
namespace Photon.Compression.Internal;
[PackSupportedTypes(typeof(double))]
public interface IPackDouble
{
SerializationFlags Pack(ref double value, double preValue, byte[] buffer, ref int bitposition, int frameId, SerializationFlags writeFlags);
SerializationFlags Unpack(ref double value, byte[] buffer, ref int bitposition, int frameId, SerializationFlags writeFlags);
}
|