mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-18 01:14:19 +00:00
Refactor: Added empty imgui_widgets.cpp + updated project files / makefiles etc. accordingly (#2036)
This commit is contained in:
parent
f2aa124eb8
commit
01586d33f3
29 changed files with 76 additions and 5 deletions
25
imgui_widgets.cpp
Normal file
25
imgui_widgets.cpp
Normal file
|
|
@ -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…
Add table
Add a link
Reference in a new issue