using System; namespace OpenMacroBoard.SDK { /// /// An interface that allows you to access the underlying data of s. /// public interface IKeyBitmapDataAccess { /// /// Gets the width of the bitmap. /// int Width { get; } /// /// Gets the height of the bitmap. /// int Height { get; } /// /// Gets a value indicating whether the underlying byte array is null. /// bool IsEmpty { get; } /// /// Gets the underlying image data in unaligned Bgr24 format (stride = width * 3). /// ReadOnlySpan GetData(); } }