-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstants.cs
28 lines (21 loc) · 852 Bytes
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
namespace RayGui_cs
{
[SuppressUnmanagedCodeSecurity]
public static unsafe partial class RayGui
{
/// <summary>
/// Used by DllImport to load the native library
/// </summary>
public const string NativeLibName = "raygui";
public const string rayGuiVersion = "4.0";
public const int SCROLLBAR_LEFT_SIDE = 0;
public const int SCROLLBAR_RIGHT_SIDE = 1;
public const int RAYGUI_MAX_CONTROLS = 16;
public const int RAYGUI_MAX_PROPS_BASE = 16;
public const int RAYGUI_MAX_PROPS_EXTENDED = 8;
public const int RAYGUI_ICON_SIZE = 16;
public const int RAYGUI_ICON_MAX_ICONS = 256;
public const int RAYGUI_ICON_MAX_NAME_LENGTH = 32;
public const int RAYGUI_ICON_DATA_ELEMENTS = RAYGUI_ICON_SIZE * RAYGUI_ICON_SIZE / 32;
}
}