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

16 lines
317 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "BiomeFeatures.generated.h"
class UMinersManualData;
USTRUCT(BlueprintType)
struct FBiomeFeatures {
GENERATED_BODY()
public:
UPROPERTY(EditAnywhere, meta=(AllowPrivateAccess=true))
UMinersManualData* Descriptions[2];
FSD_API FBiomeFeatures();
};