Files
UnrealEngine/Engine/Source/Runtime/AutomationTest/Private/AutomationTestModule.cpp
2025-05-18 13:04:45 +08:00

31 lines
572 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "AutomationTestModule.h"
#include "Modules/ModuleInterface.h"
#include "Modules/ModuleManager.h"
DEFINE_LOG_CATEGORY(LogAutomationTest)
/**
* Implements the AutomationTesting module.
*/
class FAutomationTestModule
: public IModuleInterface
{
public:
//~ IModuleInterface interface
virtual void StartupModule() override { }
virtual void ShutdownModule() override { }
virtual bool SupportsDynamicReloading() override
{
return true;
}
};
IMPLEMENT_MODULE(FAutomationTestModule, AutomationTest);