mirror of
https://github.com/kevinporetti/UnrealImGui.git
synced 2025-01-18 16:30:32 +00:00
23 lines
535 B
C++
23 lines
535 B
C++
|
// Distributed under the MIT License (MIT) (see accompanying LICENSE file)
|
||
|
|
||
|
#include "ImGuiPrivatePCH.h"
|
||
|
|
||
|
#include "ImGuiDelegates.h"
|
||
|
#include "ImGuiDelegatesContainer.h"
|
||
|
|
||
|
|
||
|
FSimpleMulticastDelegate& FImGuiDelegates::OnWorldDebug()
|
||
|
{
|
||
|
return OnWorldDebug(GWorld);
|
||
|
}
|
||
|
|
||
|
FSimpleMulticastDelegate& FImGuiDelegates::OnWorldDebug(UWorld* World)
|
||
|
{
|
||
|
return FImGuiDelegatesContainer::Get().OnWorldDebug(World);
|
||
|
}
|
||
|
|
||
|
FSimpleMulticastDelegate& FImGuiDelegates::OnMultiContextDebug()
|
||
|
{
|
||
|
return FImGuiDelegatesContainer::Get().OnMultiContextDebug();
|
||
|
}
|