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

21 lines
556 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "EPlatformComponentCriteria.h"
#include "Templates/SubclassOf.h"
#include "PlatformComponent.generated.h"
class UActorComponent;
USTRUCT(BlueprintType)
struct FPlatformComponent {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TSubclassOf<UActorComponent> ComponentClass;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
EPlatformComponentCriteria Criteria;
FSD_API FPlatformComponent();
};