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

15 lines
361 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "CaveInfluence.h"
#include "CaveInfluenceSet.generated.h"
USTRUCT(BlueprintType)
struct FCaveInfluenceSet {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
TArray<FCaveInfluence> CaveInfluences;
FSD_API FCaveInfluenceSet();
};