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

20 lines
510 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/NoExportTypes.h"
#include "MiningPodDialogs.h"
#include "TeamTransport.h"
#include "DropPod.generated.h"
UCLASS(Blueprintable)
class FSD_API ADropPod : public ATeamTransport {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FMiningPodDialogs Dialogs;
ADropPod();
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
FVector GetDonkeyReturnPickupLocation();
};