mirror of
https://github.com/Drezil/imgui.git
synced 2025-07-07 21:39:54 +02:00
Added IMGUI_INCLUDE_IMGUI_USER_H
This commit is contained in:
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
|
||||
|
Reference in New Issue
Block a user