diff --git a/src/ImGui.NET/Align.cs b/src/ImGui.NET/Align.cs index 6f380a0..2cb1756 100644 --- a/src/ImGui.NET/Align.cs +++ b/src/ImGui.NET/Align.cs @@ -1,4 +1,4 @@ -namespace ImGui +namespace ImGuiNET { public enum Align { diff --git a/src/ImGui.NET/ColorEditMode.cs b/src/ImGui.NET/ColorEditMode.cs index 4681e61..d6c0d11 100644 --- a/src/ImGui.NET/ColorEditMode.cs +++ b/src/ImGui.NET/ColorEditMode.cs @@ -1,4 +1,4 @@ -namespace ImGui +namespace ImGuiNET { /// /// Enumeration for ColorEditMode() diff --git a/src/ImGui.NET/ColorTarget.cs b/src/ImGui.NET/ColorTarget.cs index cbcdfaf..2d885fa 100644 --- a/src/ImGui.NET/ColorTarget.cs +++ b/src/ImGui.NET/ColorTarget.cs @@ -1,4 +1,4 @@ -namespace ImGui +namespace ImGuiNET { /// /// Enumeration for PushStyleColor() / PopStyleColor() diff --git a/src/ImGui.NET/DrawCmd.cs b/src/ImGui.NET/DrawCmd.cs index 2de631c..13f5db5 100644 --- a/src/ImGui.NET/DrawCmd.cs +++ b/src/ImGui.NET/DrawCmd.cs @@ -2,7 +2,7 @@ using System.Numerics; using System.Runtime.InteropServices; -namespace ImGui +namespace ImGuiNET { /// /// Typically, 1 command = 1 gpu draw call (unless command is a callback) diff --git a/src/ImGui.NET/DrawData.cs b/src/ImGui.NET/DrawData.cs index ab9b1e4..2ce11aa 100644 --- a/src/ImGui.NET/DrawData.cs +++ b/src/ImGui.NET/DrawData.cs @@ -1,6 +1,6 @@ using System.Runtime.InteropServices; -namespace ImGui +namespace ImGuiNET { // All draw data to render an ImGui frame [StructLayout(LayoutKind.Sequential)] diff --git a/src/ImGui.NET/DrawList.cs b/src/ImGui.NET/DrawList.cs index 078c7e9..a32add0 100644 --- a/src/ImGui.NET/DrawList.cs +++ b/src/ImGui.NET/DrawList.cs @@ -1,7 +1,7 @@ using System; using System.Runtime.InteropServices; -namespace ImGui +namespace ImGuiNET { /// /// Draw command list diff --git a/src/ImGui.NET/DrawVert.cs b/src/ImGui.NET/DrawVert.cs index 0ceff0e..ba2d0c4 100644 --- a/src/ImGui.NET/DrawVert.cs +++ b/src/ImGui.NET/DrawVert.cs @@ -1,7 +1,7 @@ using System.Numerics; using System.Runtime.InteropServices; -namespace ImGui +namespace ImGuiNET { [StructLayout(LayoutKind.Sequential)] public unsafe struct DrawVert diff --git a/src/ImGui.NET/Font.cs b/src/ImGui.NET/Font.cs index 43f2e98..4e55220 100644 --- a/src/ImGui.NET/Font.cs +++ b/src/ImGui.NET/Font.cs @@ -2,7 +2,7 @@ using System.Runtime.InteropServices; using System.Numerics; -namespace ImGui +namespace ImGuiNET { /// /// Font runtime data and rendering. diff --git a/src/ImGui.NET/FontAtlas.cs b/src/ImGui.NET/FontAtlas.cs index 04a14fe..1ef3521 100644 --- a/src/ImGui.NET/FontAtlas.cs +++ b/src/ImGui.NET/FontAtlas.cs @@ -2,7 +2,7 @@ using System; using System.Numerics; -namespace ImGui +namespace ImGuiNET { // Load and rasterize multiple TTF fonts into a same texture. // Sharing a texture for multiple fonts allows us to reduce the number of draw calls during rendering. diff --git a/src/ImGui.NET/FontConfig.cs b/src/ImGui.NET/FontConfig.cs index 1a05fc5..9a76d1c 100644 --- a/src/ImGui.NET/FontConfig.cs +++ b/src/ImGui.NET/FontConfig.cs @@ -2,7 +2,7 @@ using System.Numerics; using System.Runtime.InteropServices; -namespace ImGui +namespace ImGuiNET { [StructLayout(LayoutKind.Sequential)] public unsafe struct FontConfig diff --git a/src/ImGui.NET/GuiKey.cs b/src/ImGui.NET/GuiKey.cs index 485a460..ce2ac43 100644 --- a/src/ImGui.NET/GuiKey.cs +++ b/src/ImGui.NET/GuiKey.cs @@ -1,4 +1,4 @@ -namespace ImGui +namespace ImGuiNET { /// /// User fill ImGuiIO.KeyMap[] array with indices into the ImGuiIO.KeysDown[512] array diff --git a/src/ImGui.NET/IO.cs b/src/ImGui.NET/IO.cs index 12aecef..70660cb 100644 --- a/src/ImGui.NET/IO.cs +++ b/src/ImGui.NET/IO.cs @@ -2,7 +2,7 @@ using System.Numerics; using System.Runtime.InteropServices; -namespace ImGui +namespace ImGuiNET { [StructLayout(LayoutKind.Sequential)] public unsafe struct IO diff --git a/src/ImGui.NET/ImGui.NET.csproj b/src/ImGui.NET/ImGui.NET.csproj index d10458a..a4b413d 100644 --- a/src/ImGui.NET/ImGui.NET.csproj +++ b/src/ImGui.NET/ImGui.NET.csproj @@ -5,7 +5,7 @@ 14.0 {2665014F-0FEC-4268-8F77-7B029921AB09} Library - ImGui + ImGuiNET ImGui.NET true @@ -15,6 +15,7 @@ + @@ -80,6 +81,9 @@ AnyCPU MinimumRecommendedRules.ruleset + + true + diff --git a/src/ImGui.NET/ImGui.cs b/src/ImGui.NET/ImGui.cs index 9568f7a..925bcdd 100644 --- a/src/ImGui.NET/ImGui.cs +++ b/src/ImGui.NET/ImGui.cs @@ -1,6 +1,8 @@ -using System.Numerics; +using System; +using System.Numerics; +using System.Runtime.InteropServices; -namespace ImGui +namespace ImGuiNET { public static class ImGui { @@ -25,6 +27,16 @@ namespace ImGui ImGuiNative.igText(message); } + public static void PushId(string id) + { + ImGuiNative.igPushIdStr(id); + } + + public static void PopId() + { + ImGuiNative.igPopId(); + } + public static void Text(string message, Vector4 color) { ImGuiNative.igTextColored(color, message); @@ -35,6 +47,16 @@ namespace ImGui return ImGuiNative.igButton(message, size); } + public static void SetNextWindowSize(Vector2 size, SetCondition condition) + { + ImGuiNative.igSetNextWindowSize(size, condition); + } + + public static void SetNextWindowPosCenter(SetCondition condition) + { + ImGuiNative.igSetNextWindowPosCenter(condition); + } + /// /// Helper to scale the ClipRect field of each ImDrawCmd. /// Use if your final output buffer is at a different scale than ImGui expects, @@ -55,5 +77,223 @@ namespace ImGui } } } + + public static float GetWindowHeight() + { + return ImGuiNative.igGetWindowHeight(); + } + + public static bool ColorButton(Vector4 color, bool smallHeight, bool outlineBorder) + { + return ImGuiNative.igColorButton(color, smallHeight, outlineBorder); + } + + public static float GetWindowWidth() + { + return ImGuiNative.igGetWindowWidth(); + } + + public static bool BeginWindow(string windowTitle) => BeginWindow(windowTitle, WindowFlags.Default); + + public static bool BeginWindow(string windowTitle, WindowFlags flags) + { + bool opened = true; + return ImGuiNative.igBegin(windowTitle, ref opened, flags); + } + + public static bool BeginWindow(string windowTitle, ref bool opened, WindowFlags flags) + { + return ImGuiNative.igBegin(windowTitle, ref opened, flags); + } + + public static bool BeginWindow(string windowTitle, ref bool opened, float backgroundAlpha, WindowFlags flags) + { + return ImGuiNative.igBegin2(windowTitle, ref opened, new Vector2(), backgroundAlpha, flags); + } + + public static bool BeginMenu(string label, bool enabled) + { + return ImGuiNative.igBeginMenu(label, enabled); + } + + public static void BeginMenuBar() + { + ImGuiNative.igBeginMenuBar(); + } + + public static void CloseCurrentPopup() + { + ImGuiNative.igCloseCurrentPopup(); + } + + public static bool BeginWindow(string windowTitle, ref bool opened, Vector2 startingSize, WindowFlags flags) + { + return ImGuiNative.igBegin2(windowTitle, ref opened, startingSize, 1f, flags); + } + + public static unsafe bool Checkbox(string label, ref bool value) + { + bool localVal = value; + bool result = ImGuiNative.igCheckbox(label, &localVal); + value = localVal; + return result; + } + + public static void EndMenuBar() + { + ImGuiNative.igEndMenuBar(); + } + + public static void EndMenu() + { + ImGuiNative.igEndMenu(); + } + + public static bool BeginWindow(string windowTitle, ref bool opened, Vector2 startingSize, float backgroundAlpha, WindowFlags flags) + { + return ImGuiNative.igBegin2(windowTitle, ref opened, startingSize, backgroundAlpha, flags); + } + + public static void Separator() + { + ImGuiNative.igSeparator(); + } + + public static bool MenuItem(string label, string shortcut) + { + return MenuItem(label, shortcut, false, true); + } + + public static unsafe bool InputText(string label, IntPtr textBuffer, uint bufferSize, InputTextFlags flags, TextEditCallback textEditCallback) + { + return InputText(label, textBuffer, bufferSize, flags, textEditCallback, IntPtr.Zero); + } + + public static unsafe bool InputText(string label, IntPtr textBuffer, uint bufferSize, InputTextFlags flags, TextEditCallback textEditCallback, IntPtr userData) + { + return ImGuiNative.igInputText(label, textBuffer, bufferSize, flags, textEditCallback, userData.ToPointer()); + } + + public static bool MenuItem(string label, string shortcut, bool selected, bool enabled) + { + return ImGuiNative.igMenuItem(label, shortcut, selected, enabled); + } + + public static void EndWindow() + { + ImGuiNative.igEnd(); + } + + public static void PushStyleColor(ColorTarget target, Vector4 color) + { + ImGuiNative.igPushStyleColor(target, color); + } + + public static unsafe void InputTextMultiline(string label, IntPtr textBuffer, uint bufferSize, Vector2 size, InputTextFlags flags, TextEditCallback callback, IntPtr userData) + { + ImGuiNative.igInputTextMultiline(label, textBuffer, bufferSize, size, flags, callback, userData.ToPointer()); + } + + public static void PopStyleColor() + { + PopStyleColor(1); + } + + public static void PopStyleColor(int numStyles) + { + ImGuiNative.igPopStyleColor(numStyles); + } + + public static bool BeginChildFrame(uint id, Vector2 size, WindowFlags flags) + { + return ImGuiNative.igBeginChildFrame(id, size, flags); + } + + public static void EndChildFrame() + { + ImGuiNative.igEndChildFrame(); + } + + public static bool BeginChild(string id, Vector2 size, bool border, WindowFlags flags) + { + return ImGuiNative.igBeginChild(id, size, border, flags); + } + + public static bool BeginChild(uint id, Vector2 size, bool border, WindowFlags flags) + { + return ImGuiNative.igBeginChildEx(id, size, border, flags); + } + + public static void EndChild() + { + ImGuiNative.igEndChild(); + } + + public static bool Selectable(string label, bool isSelected) + { + return Selectable(label, isSelected, SelectableFlags.Default); + } + + public static bool Selectable(string label, bool isSelected, SelectableFlags flags) + { + return Selectable(label, isSelected, flags, new Vector2()); + } + + public static bool Selectable(string label, bool isSelected, SelectableFlags flags, Vector2 size) + { + return ImGuiNative.igSelectable(label, isSelected, flags, size); + } + + public static unsafe Vector2 GetTextSize(string text, float wrapWidth = Int32.MaxValue) + { + Vector2 result; + IntPtr buffer = Marshal.StringToHGlobalAnsi(text); + byte* textStart = (byte*)buffer.ToPointer(); + byte* textEnd = textStart + text.Length; + ImGuiNative.igCalcTextSize(out result, (char*)textStart, (char*)textEnd, false, wrapWidth); + return result; + } + + public static void SameLine() + { + ImGuiNative.igSameLine(0, 0); + } + + public static void SameLine(float localPositionX, float spacingW) + { + ImGuiNative.igSameLine(localPositionX, spacingW); + } + + public static bool IsLastItemHovered() + { + return ImGuiNative.igIsItemHovered(); + } + + public static void ShowTooltip(string text) + { + ImGuiNative.igSetTooltip(text); + } + + public static void SetNextTreeNodeOpened(bool opened) + { + ImGuiNative.igSetNextTreeNodeOpened(opened, SetCondition.Always); + } + + public static bool TreeNode(string label) + { + return ImGuiNative.igTreeNode(label); + } + + public static void TreePop() + { + ImGuiNative.igTreePop(); + } + + public static Vector2 GetLastItemRect() + { + Vector2 result; + ImGuiNative.igGetItemRectSize(out result); + return result; + } } } diff --git a/src/ImGui.NET/ImGuiNative.cs b/src/ImGui.NET/ImGuiNative.cs index 3b180fa..c4249e1 100644 --- a/src/ImGui.NET/ImGuiNative.cs +++ b/src/ImGui.NET/ImGuiNative.cs @@ -2,7 +2,7 @@ using System.Numerics; using System; -namespace ImGui +namespace ImGuiNET { /// /// Contains all of the exported functions from the native (c)imGui module. @@ -30,6 +30,7 @@ namespace ImGui public static extern void igShowUserGuide(); [DllImport(cimguiLib)] public static extern void igShowStyleEditor(ref Style @ref); + [DllImport(cimguiLib)] public static extern void igShowTestWindow(ref bool opened); [DllImport(cimguiLib)] @@ -52,6 +53,7 @@ namespace ImGui public static extern void igGetContentRegionMax(out Vector2 @out); [DllImport(cimguiLib)] public static extern void igGetContentRegionAvail(out Vector2 @out); + [DllImport(cimguiLib)] public static extern float igGetContentRegionAvailWidth(); [DllImport(cimguiLib)] @@ -263,7 +265,7 @@ namespace ImGui public static extern void igTextWrapped(string fmt); [DllImport(cimguiLib)] - public static extern void igTextUnformatted(string text, string text_end); + public static extern void igTextUnformatted(byte* text, byte* text_end); [DllImport(cimguiLib)] public static extern void igLabelText(string label, string fmt); @@ -399,20 +401,11 @@ namespace ImGui public static extern bool igTreeNode(string str_label_id); [DllImport(cimguiLib)] - //public static extern bool igTreeNodeStr(string str_id, string fmt, ...); public static extern bool igTreeNodeStr(string str_id, string fmt); [DllImport(cimguiLib)] - //public static extern bool igTreeNodePtr(void* ptr_id, string fmt, ...); public static extern bool igTreeNodePtr(void* ptr_id, string fmt); - /* - [DllImport(LibName)] - public static extern bool igTreeNodeStrV(string str_id, string fmt, va_list args); - [DllImport(LibName)] - public static extern bool igTreeNodePtrV(void* ptr_id, string fmt, va_list args); - */ - [DllImport(cimguiLib)] public static extern void igTreePushStr(string str_id); [DllImport(cimguiLib)] @@ -426,7 +419,7 @@ namespace ImGui [DllImport(cimguiLib)] public static extern bool igSelectable(string label, bool selected, SelectableFlags flags, Vector2 size); [DllImport(cimguiLib)] - public static extern bool igSelectableEx(string label, bool* p_selected, SelectableFlags flags, Vector2 size); + public static extern bool igSelectableEx(string label, ref bool p_selected, SelectableFlags flags, Vector2 size); [DllImport(cimguiLib)] public static extern bool igListBox(string label, int* current_item, char** items, int items_count, int height_in_items); @@ -456,14 +449,7 @@ namespace ImGui // Tooltip [DllImport(cimguiLib)] - //public static extern void igSetTooltip(string fmt, ...); public static extern void igSetTooltip(string fmt); - - /* - [DllImport(LibName)] - public static extern void igSetTooltipV(string fmt, va_list args); - */ - [DllImport(cimguiLib)] public static extern void igBeginTooltip(); [DllImport(cimguiLib)] @@ -494,8 +480,23 @@ namespace ImGui public static extern void igOpenPopup(string str_id); [DllImport(cimguiLib)] public static extern bool igBeginPopup(string str_id); - [DllImport(cimguiLib)] - public static extern bool igBeginPopupModal(string name, ref bool p_opened, WindowFlags extra_flags); + [DllImport(cimguiLib, CharSet = CharSet.Ansi)] + public static extern bool igBeginPopupModal(string name, byte* p_opened, WindowFlags extra_flags); + + public static bool igBeginPopupModal(string name, WindowFlags extra_flags) + { + return igBeginPopupModal(name, null, extra_flags); + } + + public static bool igBeginPopupModal(string name, ref bool p_opened, WindowFlags extra_flags) + { + byte value = p_opened ? (byte)1 : (byte)0; + bool result = igBeginPopupModal(name, &value, extra_flags); + + p_opened = value == 1 ? true : false; + return result; + } + [DllImport(cimguiLib)] public static extern bool igBeginPopupContextItem(string str_id, int mouse_button); [DllImport(cimguiLib)] @@ -537,11 +538,11 @@ namespace ImGui [DllImport(cimguiLib)] public static extern bool igIsAnyItemActive(); [DllImport(cimguiLib)] - public static extern void igGetItemRectMin(Vector2* pOut); + public static extern void igGetItemRectMin(out Vector2 pOut); [DllImport(cimguiLib)] - public static extern void igGetItemRectMax(Vector2* pOut); + public static extern void igGetItemRectMax(out Vector2 pOut); [DllImport(cimguiLib)] - public static extern void igGetItemRectSize(Vector2* pOut); + public static extern void igGetItemRectSize(out Vector2 pOut); [DllImport(cimguiLib)] public static extern bool igIsWindowHovered(); [DllImport(cimguiLib)] @@ -561,9 +562,9 @@ namespace ImGui [DllImport(cimguiLib)] public static extern string igGetStyleColName(ColorTarget idx); [DllImport(cimguiLib)] - public static extern void igCalcItemRectClosestPoint(Vector2* pOut, Vector2 pos, bool on_edge, float outward); + public static extern void igCalcItemRectClosestPoint(out Vector2 pOut, Vector2 pos, bool on_edge, float outward); [DllImport(cimguiLib)] - public static extern void igCalcTextSize(Vector2* pOut, string text, string text_end, bool hide_text_after_double_hash, float wrap_width); + public static extern void igCalcTextSize(out Vector2 pOut, char* text, char* text_end, bool hide_text_after_double_hash, float wrap_width); [DllImport(cimguiLib)] public static extern void igCalcListClipping(int items_count, float items_height, int* out_items_display_start, int* out_items_display_end); diff --git a/src/ImGui.NET/ImVector.cs b/src/ImGui.NET/ImVector.cs index 37f22e9..d2a3faa 100644 --- a/src/ImGui.NET/ImVector.cs +++ b/src/ImGui.NET/ImVector.cs @@ -1,6 +1,6 @@ using System.Runtime.InteropServices; -namespace ImGui +namespace ImGuiNET { [StructLayout(LayoutKind.Sequential)] public unsafe struct ImVector diff --git a/src/ImGui.NET/InputTextFlags.cs b/src/ImGui.NET/InputTextFlags.cs index 0be9d7d..7fc5293 100644 --- a/src/ImGui.NET/InputTextFlags.cs +++ b/src/ImGui.NET/InputTextFlags.cs @@ -1,4 +1,4 @@ -namespace ImGui +namespace ImGuiNET { /// /// Flags for ImGui.InputText() diff --git a/src/ImGui.NET/MouseCursorKind.cs b/src/ImGui.NET/MouseCursorKind.cs index 5791676..c9cf067 100644 --- a/src/ImGui.NET/MouseCursorKind.cs +++ b/src/ImGui.NET/MouseCursorKind.cs @@ -1,4 +1,4 @@ -namespace ImGui +namespace ImGuiNET { /// /// Enumeration for GetMouseCursor() diff --git a/src/ImGui.NET/SelectableFlags.cs b/src/ImGui.NET/SelectableFlags.cs index 12d923c..8b41dca 100644 --- a/src/ImGui.NET/SelectableFlags.cs +++ b/src/ImGui.NET/SelectableFlags.cs @@ -1,4 +1,4 @@ -namespace ImGui +namespace ImGuiNET { /// /// Flags for ImGui::Selectable() diff --git a/src/ImGui.NET/SetCondition.cs b/src/ImGui.NET/SetCondition.cs index c5c2cd1..b048ed6 100644 --- a/src/ImGui.NET/SetCondition.cs +++ b/src/ImGui.NET/SetCondition.cs @@ -1,4 +1,4 @@ -namespace ImGui +namespace ImGuiNET { /// /// Condition flags for ImGui::SetWindow***(), SetNextWindow***(), SetNextTreeNode***() functions. diff --git a/src/ImGui.NET/Storage.cs b/src/ImGui.NET/Storage.cs index fd3737c..c6cefe6 100644 --- a/src/ImGui.NET/Storage.cs +++ b/src/ImGui.NET/Storage.cs @@ -1,7 +1,7 @@ using System; using System.Runtime.InteropServices; -namespace ImGui +namespace ImGuiNET { [StructLayout(LayoutKind.Sequential)] public unsafe struct Storage diff --git a/src/ImGui.NET/Style.cs b/src/ImGui.NET/Style.cs index c032e16..9ffabcd 100644 --- a/src/ImGui.NET/Style.cs +++ b/src/ImGui.NET/Style.cs @@ -1,7 +1,7 @@ using System.Runtime.InteropServices; using System.Numerics; -namespace ImGui +namespace ImGuiNET { [StructLayout(LayoutKind.Sequential)] public unsafe struct Style diff --git a/src/ImGui.NET/StyleVar.cs b/src/ImGui.NET/StyleVar.cs index b81f733..d6334d5 100644 --- a/src/ImGui.NET/StyleVar.cs +++ b/src/ImGui.NET/StyleVar.cs @@ -1,4 +1,4 @@ -namespace ImGui +namespace ImGuiNET { /// /// Enumeration for PushStyleVar() / PopStyleVar() diff --git a/src/ImGui.NET/TextEditCallback.cs b/src/ImGui.NET/TextEditCallback.cs index 733d507..4d35c88 100644 --- a/src/ImGui.NET/TextEditCallback.cs +++ b/src/ImGui.NET/TextEditCallback.cs @@ -1,4 +1,4 @@ -namespace ImGui +namespace ImGuiNET { public unsafe delegate int TextEditCallback(TextEditCallbackData* data); } diff --git a/src/ImGui.NET/TextEditCallbackData.cs b/src/ImGui.NET/TextEditCallbackData.cs index 0debda0..24789e4 100644 --- a/src/ImGui.NET/TextEditCallbackData.cs +++ b/src/ImGui.NET/TextEditCallbackData.cs @@ -1,7 +1,7 @@ using System; using System.Runtime.InteropServices; -namespace ImGui +namespace ImGuiNET { [StructLayout(LayoutKind.Sequential)] public unsafe struct TextEditCallbackData diff --git a/src/ImGui.NET/TextInputBuffer.cs b/src/ImGui.NET/TextInputBuffer.cs new file mode 100644 index 0000000..2c37169 --- /dev/null +++ b/src/ImGui.NET/TextInputBuffer.cs @@ -0,0 +1,49 @@ +using System; +using System.Runtime.InteropServices; + +namespace ImGuiNET +{ + public class TextInputBuffer : IDisposable + { + public IntPtr Buffer { get; private set; } + public uint Length { get; private set; } + + public TextInputBuffer(int length) + { + CreateBuffer(length); + } + + public TextInputBuffer(string initialText) + { + Buffer = Marshal.StringToHGlobalAnsi(initialText); + Length = (uint)initialText.Length; + } + + public void Resize(int newSize) + { + ClearBuffer(); + CreateBuffer(newSize); + } + + private void CreateBuffer(int size) + { + Buffer = Marshal.AllocHGlobal(size); + Length = Length; + } + + private void ClearBuffer() + { + Marshal.FreeHGlobal(Buffer); + Buffer = IntPtr.Zero; + Length = 0; + } + + public void Dispose() + { + if (Buffer != IntPtr.Zero) + { + ClearBuffer(); + } + } + } +} diff --git a/src/ImGui.NET/WindowFlags.cs b/src/ImGui.NET/WindowFlags.cs index 89b5e47..7bec1f7 100644 --- a/src/ImGui.NET/WindowFlags.cs +++ b/src/ImGui.NET/WindowFlags.cs @@ -1,4 +1,4 @@ -namespace ImGui +namespace ImGuiNET { /// /// Flags for ImGui::Begin() diff --git a/src/ImGui.NET/project.json b/src/ImGui.NET/project.json index 4b4e5e9..4e48cce 100644 --- a/src/ImGui.NET/project.json +++ b/src/ImGui.NET/project.json @@ -1,7 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Console": "1.0.0-beta-23413", - "System.Console": "4.0.0-beta-23427" + "Microsoft.NETCore.Console": "1.0.0-beta-23504" }, "runtimes": { "win10-x64": { },