|
@@ -0,0 +1,25 @@
|
|
|
+// dear imgui, v1.64 WIP
|
|
|
+// (widgets code)
|
|
|
+
|
|
|
+#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS)
|
|
|
+#define _CRT_SECURE_NO_WARNINGS
|
|
|
+#endif
|
|
|
+
|
|
|
+#include "imgui.h"
|
|
|
+#ifndef IMGUI_DEFINE_MATH_OPERATORS
|
|
|
+#define IMGUI_DEFINE_MATH_OPERATORS
|
|
|
+#endif
|
|
|
+#include "imgui_internal.h"
|
|
|
+
|
|
|
+//-------------------------------------------------------------------------
|
|
|
+// Forward Declarations
|
|
|
+//-------------------------------------------------------------------------
|
|
|
+
|
|
|
+//-------------------------------------------------------------------------
|
|
|
+// Shared Utilities
|
|
|
+//-------------------------------------------------------------------------
|
|
|
+
|
|
|
+//-------------------------------------------------------------------------
|
|
|
+// Widgets
|
|
|
+//-------------------------------------------------------------------------
|
|
|
+
|