From 651da03c0349e5710479d1eb0745c0d1839b424d Mon Sep 17 00:00:00 2001 From: David Pethes Date: Sun, 22 Jan 2017 02:27:01 +0100 Subject: [PATCH] add default param values for Indent/Unindent --- src/ImGui.NET/ImGuiNative.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ImGui.NET/ImGuiNative.cs b/src/ImGui.NET/ImGuiNative.cs index eeb2f63..63b751d 100644 --- a/src/ImGui.NET/ImGuiNative.cs +++ b/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)]