mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
Added IMGUI_INCLUDE_IMGUI_USER_H
This commit is contained in:
parent
a5cc2e4161
commit
e43cd6e97f
3 changed files with 12 additions and 1 deletions
7
imgui.h
7
imgui.h
|
|
@ -777,3 +777,10 @@ struct ImFont
|
|||
};
|
||||
#pragma pack(pop)
|
||||
};
|
||||
|
||||
//---- Include imgui_user.h at the end of imgui.h
|
||||
//---- So you can include code that extends ImGui using any of the types declared above.
|
||||
//---- (also convenient for user to only explicitly include vanilla imgui.h)
|
||||
#ifdef IMGUI_INCLUDE_IMGUI_USER_H
|
||||
#include "imgui_user.h"
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue