DRG-Femboy-Voice/Source/FSD/Public/PlatformSpecificEventPopup.h
2025-04-15 12:39:31 -07:00

20 lines
548 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "EFSDTargetPlatform.h"
#include "PlatformSpecificEventPopup.generated.h"
class UFSDEventPopupWidget;
USTRUCT(BlueprintType)
struct FPlatformSpecificEventPopup {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
EFSDTargetPlatform TargetPlatform;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TSoftClassPtr<UFSDEventPopupWidget> PopupWidget;
FSD_API FPlatformSpecificEventPopup();
};