2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00

Fix typo with Raygui-cs

This commit is contained in:
Chris 2021-05-12 10:00:01 +01:00 committed by ChrisDill
parent 4f4296adaf
commit 79ba46896e

View File

@ -239,11 +239,11 @@ namespace Raygui_cs
// Set one style property // Set one style property
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void GuiSetStyle(GuiControlStandard control, GuiControlProperty property, int value); public static extern void GuiSetStyle(GuiControl control, GuiControlProperty property, int value);
// Get one style property // Get one style property
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern int GuiGetStyle(GuiControlStandard control, GuiControlProperty property); public static extern int GuiGetStyle(GuiControl control, GuiControlProperty property);
// Container/separator controls, useful for controls organization // Container/separator controls, useful for controls organization