Files
UnrealEngine/Engine/Plugins/Animation/DeformerGraph/Source/OptimusDeveloper/Private/OptimusDeveloperModule.cpp
2025-05-18 13:04:45 +08:00

18 lines
331 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "OptimusDeveloperModule.h"
#include "Modules/ModuleManager.h"
void FOptimusDeveloperModule::StartupModule()
{
}
void FOptimusDeveloperModule::ShutdownModule()
{
}
IMPLEMENT_MODULE(FOptimusDeveloperModule, OptimusDeveloper)
DEFINE_LOG_CATEGORY(LogOptimusDeveloper);