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]
16 lines
346 B
C++
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);
|