Files
UnrealEngine/Engine/Plugins/Animation/LiveLink/Source/LiveLinkComponents/Private/LiveLinkComponentModule.h
2025-05-18 13:04:45 +08:00

15 lines
394 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "ILiveLinkComponentModule.h"
class FLiveLinkComponentsModule : public ILiveLinkComponentsModule
{
public:
virtual FLiveLinkComponentRegistered& OnLiveLinkComponentRegistered() override { return OnLiveLinkComponentRegisteredDelegate; }
private:
FLiveLinkComponentRegistered OnLiveLinkComponentRegisteredDelegate;
};