mirror of
https://github.com/kevinporetti/UnrealImGui.git
synced 2025-01-18 16:30:32 +00:00
d4ffe9443f
- 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.
18 lines
428 B
C++
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
|
|
}
|