Christian Köllner cbf2144ef4 Initial commit
2019-06-12 21:56:55 +02:00

14 lines
248 B
C#

using System;
namespace Capnp
{
/// <summary>
/// Helper struct to represent the tuple (segment index, offset)
/// </summary>
public struct SegmentSlice
{
public uint SegmentIndex;
public int Offset;
}
}