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

19 lines
523 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Components/ActorComponent.h"
#include "SeamlessTravelEventActivator.generated.h"
class USeamlessTravelEventKey;
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class FSD_API USeamlessTravelEventActivator : public UActorComponent {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
USeamlessTravelEventKey* EventKey;
public:
USeamlessTravelEventActivator();
};