Files
UnrealEngine/Engine/Plugins/Animation/LiveLink/Source/LiveLinkComponents/Public/ILiveLinkComponentModule.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

25 lines
549 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Delegates/Delegate.h"
#include "Modules/ModuleInterface.h"
class ULiveLinkComponentController;
DECLARE_MULTICAST_DELEGATE_OneParam(FLiveLinkComponentRegistered, ULiveLinkComponentController*);
/**
* Interface for LiveLinkComponent module
*/
class ILiveLinkComponentsModule : public IModuleInterface
{
public:
virtual FLiveLinkComponentRegistered& OnLiveLinkComponentRegistered() = 0;
public:
/** Virtual destructor. */
virtual ~ILiveLinkComponentsModule() { }
};