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

19 lines
440 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "BiomeEnemyEntry.generated.h"
class UEnemyDescriptor;
USTRUCT(BlueprintType)
struct FBiomeEnemyEntry {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
UEnemyDescriptor* enemy;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
bool IsDistruptive;
FSD_API FBiomeEnemyEntry();
};