2019-04-10 19:19:11 +00:00
|
|
|
// Distributed under the MIT License (MIT) (see accompanying LICENSE file)
|
|
|
|
|
|
|
|
#include "ImGuiDelegates.h"
|
|
|
|
#include "ImGuiDelegatesContainer.h"
|
|
|
|
|
2020-06-14 20:50:26 +00:00
|
|
|
#include <Engine/World.h>
|
|
|
|
|
2019-04-10 19:19:11 +00:00
|
|
|
|
2019-04-14 11:16:15 +00:00
|
|
|
FSimpleMulticastDelegate& FImGuiDelegates::OnWorldEarlyDebug()
|
|
|
|
{
|
|
|
|
return OnWorldEarlyDebug(GWorld);
|
|
|
|
}
|
|
|
|
|
|
|
|
FSimpleMulticastDelegate& FImGuiDelegates::OnWorldEarlyDebug(UWorld* World)
|
|
|
|
{
|
|
|
|
return FImGuiDelegatesContainer::Get().OnWorldEarlyDebug(World);
|
|
|
|
}
|
|
|
|
|
|
|
|
FSimpleMulticastDelegate& FImGuiDelegates::OnMultiContextEarlyDebug()
|
|
|
|
{
|
|
|
|
return FImGuiDelegatesContainer::Get().OnMultiContextEarlyDebug();
|
|
|
|
}
|
|
|
|
|
2019-04-10 19:19:11 +00:00
|
|
|
FSimpleMulticastDelegate& FImGuiDelegates::OnWorldDebug()
|
|
|
|
{
|
|
|
|
return OnWorldDebug(GWorld);
|
|
|
|
}
|
|
|
|
|
|
|
|
FSimpleMulticastDelegate& FImGuiDelegates::OnWorldDebug(UWorld* World)
|
|
|
|
{
|
|
|
|
return FImGuiDelegatesContainer::Get().OnWorldDebug(World);
|
|
|
|
}
|
|
|
|
|
|
|
|
FSimpleMulticastDelegate& FImGuiDelegates::OnMultiContextDebug()
|
|
|
|
{
|
|
|
|
return FImGuiDelegatesContainer::Get().OnMultiContextDebug();
|
|
|
|
}
|