// Copyright (c) 2013 Robert Rouhani and other contributors (see CONTRIBUTORS file). // Licensed under the MIT License - https://raw.github.com/Robmaister/SharpNav/master/LICENSE using System.Runtime.InteropServices; namespace SharpNav { /// /// Represents a cell in a . /// [StructLayout(LayoutKind.Sequential)] public struct CompactCell { /// /// The starting index of spans in a for this cell. /// public int StartIndex; /// /// The number of spans in a for this cell. /// public int Count; /// /// Initializes a new instance of the struct. /// /// The start index. /// The count. public CompactCell(int start, int count) { StartIndex = start; Count = count; } } }