Refactor: Added empty imgui_widgets.cpp + updated project files / makefiles etc. accordingly (#2036)
parent
f2aa124eb8
commit
01586d33f3
@ -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
|
||||||
|
//-------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue