2017-08-28 19:29:07 +00:00
|
|
|
// Distributed under the MIT License (MIT) (see accompanying LICENSE file)
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-06-25 09:52:46 +00:00
|
|
|
struct ImGuiContext;
|
2017-08-28 19:29:07 +00:00
|
|
|
|
2017-09-27 20:16:54 +00:00
|
|
|
// Gives access to selected ImGui implementation features.
|
|
|
|
namespace ImGuiImplementation
|
|
|
|
{
|
2018-08-10 22:53:03 +00:00
|
|
|
#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
|
2017-09-27 20:16:54 +00:00
|
|
|
}
|