mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
18 lines
414 B
C++
18 lines
414 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortItemPickerBase.h"
|
|
#include "FortTransformKeyPicker.generated.h"
|
|
|
|
class UObject;
|
|
|
|
UCLASS(Abstract, Blueprintable, EditInlineNew)
|
|
class UFortTransformKeyPicker : public UFortItemPickerBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortTransformKeyPicker();
|
|
UFUNCTION(BlueprintCallable)
|
|
void RebuildTransformKeys(const TArray<UObject*>& InDataProvider);
|
|
|
|
};
|
|
|