add default param values for Indent/Unindent

internals
David Pethes 7 years ago
parent 1c86e6b7b1
commit 651da03c03
  1. 4
      src/ImGui.NET/ImGuiNative.cs

@ -191,9 +191,9 @@ namespace ImGuiNET
[DllImport(cimguiLib)]
public static extern void igDummy(Vector2* size);
[DllImport(cimguiLib)]
public static extern void igIndent(float indent_w);
public static extern void igIndent(float indent_w = 0.0f);
[DllImport(cimguiLib)]
public static extern void igUnindent(float indent_w);
public static extern void igUnindent(float indent_w = 0.0f);
[DllImport(cimguiLib)]
public static extern void igBeginGroup();
[DllImport(cimguiLib)]

Loading…
Cancel
Save