mirror of
https://github.com/kevinporetti/UnrealImGui.git
synced 2025-01-19 00:40:32 +00:00
13 lines
260 B
C++
13 lines
260 B
C++
|
// Distributed under the MIT License (MIT) (see accompanying LICENSE file)
|
||
|
|
||
|
#include "ImGuiPrivatePCH.h"
|
||
|
|
||
|
#include "ImGuiModuleProperties.h"
|
||
|
|
||
|
|
||
|
FImGuiModuleProperties& FImGuiModuleProperties::Get()
|
||
|
{
|
||
|
static FImGuiModuleProperties Instance;
|
||
|
return Instance;
|
||
|
}
|