Fixing Compile Error

This commit is contained in:
2025-07-17 19:07:50 +02:00
parent da89e35eb2
commit 9b85bfc94a
3 changed files with 27 additions and 1 deletions

View File

@ -7,6 +7,8 @@
#include "Engine/DeveloperSettings.h"
#include "DTFluxGeneralSettings.generated.h"
class UAvaRundown;
// class UDTFluxModelAsset;
/**
*
*/
@ -20,5 +22,14 @@ public:
UDTFluxGeneralSettings();
UPROPERTY(Category="General", Config, EditAnywhere, BlueprintReadOnly, DisplayName="Datastorage File")
TSoftObjectPtr<UDTFluxModelAsset> ModelAsset;
UPROPERTY(Category="General|Remote HTTP", Config, EditAnywhere, BlueprintReadOnly, DisplayName="Rundown Remote Target")
TSoftObjectPtr<UAvaRundown> RemoteTargetRundown;
#if WITH_EDITOR
virtual void PostEditChangeProperty(FPropertyChangedEvent& PropertyChangedEvent) override;
DECLARE_MULTICAST_DELEGATE_OneParam(FOnRemoteRundownChanged, const TSoftObjectPtr<UAvaRundown>& );
FOnRemoteRundownChanged OnRemoteRundownChanged;
#endif
};