20 lines
488 B
C
20 lines
488 B
C
|
|
// Copyright 2019-Present LexLiu. All Rights Reserved.
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include "CoreMinimal.h"
|
|||
|
|
#include "LTweenDelegateHandleWrapper.generated.h"
|
|||
|
|
|
|||
|
|
/** Just a wrapper for blueprint to store a delegate handle */
|
|||
|
|
USTRUCT(BlueprintType)
|
|||
|
|
struct LTWEEN_API FLTweenDelegateHandleWrapper
|
|||
|
|
{
|
|||
|
|
GENERATED_BODY()
|
|||
|
|
public:
|
|||
|
|
FLTweenDelegateHandleWrapper() {}
|
|||
|
|
FLTweenDelegateHandleWrapper(FDelegateHandle InDelegateHandle)
|
|||
|
|
{
|
|||
|
|
DelegateHandle = InDelegateHandle;
|
|||
|
|
}
|
|||
|
|
FDelegateHandle DelegateHandle;
|
|||
|
|
};
|