mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
13 lines
348 B
C++
13 lines
348 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Components/BoxComponent.h"
|
|
#include "FortNavLinkBlockerComponent.generated.h"
|
|
|
|
UCLASS(Blueprintable, EditInlineNew, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
|
|
class UFortNavLinkBlockerComponent : public UBoxComponent {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortNavLinkBlockerComponent();
|
|
};
|
|
|