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

17 lines
423 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "InfectionPoint.generated.h"
USTRUCT(BlueprintType)
struct FInfectionPoint {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
bool IsInfected;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
bool IsVacuumed;
FSD_API FInfectionPoint();
};