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

18 lines
487 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Components/ActorComponent.h"
#include "EDroneState.h"
#include "DroneStateComponentBase.generated.h"
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class UDroneStateComponentBase : public UActorComponent {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
EDroneState SubsequentState;
public:
UDroneStateComponentBase();
};