Make sure it still builds when removing neo/libs/imgui/

.. when setting IMGUI=OFF in CMake, of course.

I don't think it's a very good idea to remove that directory, or to
disable ImGui support for any reason besides "I'm on an ancient
platform that doesn't support C++11", but this is an simple enough
change so whatever.
This commit is contained in:
Daniel Gibson 2025-03-22 17:18:56 +01:00
parent 2b20aadda5
commit 42cfb157a2

View file

@ -3,7 +3,9 @@
#ifndef NEO_SYS_SYS_IMGUI_H_
#define NEO_SYS_SYS_IMGUI_H_
#ifndef IMGUI_DISABLE
#include "../libs/imgui/imgui.h"
#endif
namespace D3 {
namespace ImGuiHooks {