mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 19:24:04 +00:00
22 lines
568 B
C++
22 lines
568 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "CreativeAdJsonObject.h"
|
|
#include "CreativeAdSource.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FCreativeAdSource {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FString _title;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FString __locale;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FCreativeAdJsonObject Ad_Info;
|
|
|
|
FORTNITEUI_API FCreativeAdSource();
|
|
};
|
|
|