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

31 lines
1,009 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "EEscortExtractorState.h"
#include "EscortMuleExtractorSlot.generated.h"
class UInstantUsable;
class USceneComponent;
class UWidgetComponent;
USTRUCT(BlueprintType)
struct FEscortMuleExtractorSlot {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
EEscortExtractorState ExtractorState;
UPROPERTY(BlueprintReadWrite, EditAnywhere, NotReplicated, Transient, meta=(AllowPrivateAccess=true))
EEscortExtractorState LastState;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, Transient, meta=(AllowPrivateAccess=true))
USceneComponent* AttachPoint;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, Transient, meta=(AllowPrivateAccess=true))
UInstantUsable* Usable;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, Transient, meta=(AllowPrivateAccess=true))
UWidgetComponent* Widget;
FSD_API FEscortMuleExtractorSlot();
};