You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Move Optimus plugin out of experimental and rename to DeformerGraph. #preflight 630e244f0345de4ccfb2b62b [CL 21701304 by Jeremy Moore in ue5-main branch]
18 lines
331 B
C++
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);
|