mirror of
https://github.com/kevinporetti/UnrealImGui.git
synced 2025-01-18 16:30:32 +00:00
16 lines
299 B
C
16 lines
299 B
C
|
// Distributed under the MIT License (MIT) (see accompanying LICENSE file)
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <ModuleManager.h>
|
||
|
|
||
|
|
||
|
class FImGuiModule : public IModuleInterface
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
/** IModuleInterface implementation */
|
||
|
virtual void StartupModule() override;
|
||
|
virtual void ShutdownModule() override;
|
||
|
};
|