Watch
2
0
Fork
You've already forked raylib-cs
0

Fix typo with Raygui-cs

This commit is contained in:
Rgebee 2021-05-12 10:00:01 +01:00 committed by ChrisDill
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