Files
UnrealEngineUWP/Engine/Plugins/Animation/DeformerGraph/Source/OptimusDeveloper/Private/OptimusDeveloperModule.h
Jeremy Moore ba14408f3d #jira UE-162367
Move Optimus plugin out of experimental and rename to DeformerGraph.
#preflight 630e244f0345de4ccfb2b62b

[CL 21701304 by Jeremy Moore in ue5-main branch]
2022-08-30 11:07:11 -04:00

16 lines
346 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "IOptimusDeveloperModule.h"
class FOptimusDeveloperModule : public IOptimusDeveloperModule
{
public:
/** IModuleInterface implementation */
void StartupModule() override;
void ShutdownModule() override;
};
DECLARE_LOG_CATEGORY_EXTERN(LogOptimusDeveloper, Log, All);