Files
UnrealEngine/Engine/Plugins/Interchange/Runtime/Source/Dispatcher/Public/InterchangeDispatcherModule.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

20 lines
488 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Modules/ModuleInterface.h"
#define INTERCHANGEDISPATCHER_MODULE_NAME TEXT("InterchangeDispatcher")
/**
* This module allows out-of-process Interchange translators in case a third-party SDK is not thread-safe.
*/
class FInterchangeDispatcherModule : public IModuleInterface
{
public:
static FInterchangeDispatcherModule& Get();
static bool IsAvailable();
private:
virtual void StartupModule() override;
};