Files
UnrealEngine/Engine/Source/Editor/OverlayEditor/Private/OverlayEditorModule.cpp
2025-05-18 13:04:45 +08:00

27 lines
557 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "IOverlayEditorModule.h"
#include "Logging/LogMacros.h"
#include "Modules/ModuleManager.h"
#include "OverlayEditorPrivate.h"
DEFINE_LOG_CATEGORY(LogOverlayEditor);
/**
* Implements the OverlayEditor module
*/
class FOverlayEditorModule
: public IOverlayEditorModule
{
public:
// IModuleInterface interface
virtual void StartupModule() override { }
virtual void ShutdownModule() override { }
// End IModuleInterface interface
};
IMPLEMENT_MODULE(FOverlayEditorModule, OverlayEditor);