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 } }