UnrealImGui/Source/ImGui/Private/ImGuiImplementation.h
Sebastian d4ffe9443f Enforced IWYU-style PCH model:
- Removed explicit PCH.
- Fixed includes to compile for all supported engine versions, including non-unity builds.
- Configured build.cs to treat ImGui as an engine module and added stricter compilation rules.
2020-06-25 10:52:46 +01:00

18 lines
428 B
C++

// Distributed under the MIT License (MIT) (see accompanying LICENSE file)
#pragma once
struct ImGuiContext;
// Gives access to selected ImGui implementation features.
namespace ImGuiImplementation
{
#if WITH_EDITOR
// Get the handle to the ImGui Context pointer.
ImGuiContext** GetImGuiContextHandle();
// Set the ImGui Context pointer handle.
void SetImGuiContextHandle(ImGuiContext** Handle);
#endif // WITH_EDITOR
}