mirror of
https://github.com/kevinporetti/UnrealImGui.git
synced 2025-01-19 00:40:32 +00:00
31 lines
548 B
C
31 lines
548 B
C
|
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#if WITH_EDITOR
|
||
|
|
||
|
// Registers module's settings in editor (due to a small size of this code we don't use a separate editor module).
|
||
|
class FImGuiEditor
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
FImGuiEditor();
|
||
|
~FImGuiEditor();
|
||
|
|
||
|
private:
|
||
|
|
||
|
bool IsRegistrationCompleted() const { return bSettingsRegistered; }
|
||
|
|
||
|
void Register();
|
||
|
void Unregister();
|
||
|
|
||
|
void CreateRegistrator();
|
||
|
void ReleaseRegistrator();
|
||
|
|
||
|
FDelegateHandle RegistratorHandle;
|
||
|
|
||
|
bool bSettingsRegistered = false;
|
||
|
};
|
||
|
|
||
|
#endif // WITH_EDITOR
|