using System.Runtime.InteropServices;
namespace Raylib_cs
{
///
/// N-patch layout
///
public enum NPatchLayout
{
///
/// Npatch defined by 3x3 tiles
///
NPATCH_NINE_PATCH = 0,
///
/// Npatch defined by 1x3 tiles
///
NPATCH_THREE_PATCH_VERTICAL,
///
/// Npatch defined by 3x1 tiles
///
NPATCH_THREE_PATCH_HORIZONTAL
}
///
/// N-Patch layout info
///
[StructLayout(LayoutKind.Sequential)]
public partial struct NPatchInfo
{
///
/// Texture source rectangle
///
public Rectangle source;
///
/// Left border offset
///
public int left;
///
/// Top border offset
///
public int top;
///
/// Right border offset
///
public int right;
///
/// Bottom border offset
///
public int bottom;
///
/// Layout of the n-patch: 3x3, 1x3 or 3x1
///
public NPatchLayout layout;
}
}