mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-09-09 03:01:41 -04:00
Split Enums, Structs & Classes into own files
This commit is contained in:
21
Raylib-cs/NPatchLayout.cs
Normal file
21
Raylib-cs/NPatchLayout.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
namespace Raylib_cs
|
||||
{
|
||||
/// <summary>N-patch layout</summary>
|
||||
public enum NPatchLayout
|
||||
{
|
||||
/// <summary>
|
||||
/// Npatch defined by 3x3 tiles
|
||||
/// </summary>
|
||||
NPATCH_NINE_PATCH = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Npatch defined by 1x3 tiles
|
||||
/// </summary>
|
||||
NPATCH_THREE_PATCH_VERTICAL,
|
||||
|
||||
/// <summary>
|
||||
/// Npatch defined by 3x1 tiles
|
||||
/// </summary>
|
||||
NPATCH_THREE_PATCH_HORIZONTAL
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user