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

26 lines
668 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "ERessuplyPodState.h"
#include "RessuplyPod.h"
#include "CleanupPod.generated.h"
class UObjective;
class USphereComponent;
UCLASS(Blueprintable)
class ACleanupPod : public ARessuplyPod {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
USphereComponent* RemovePlagueCollision;
ACleanupPod();
protected:
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
void OnObjectiveChanged(UObjective* Objective);
UFUNCTION(BlueprintCallable)
void ChangedState(ARessuplyPod* InPod, ERessuplyPodState InState);
};