mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 19:24:04 +00:00
12 lines
204 B
C
12 lines
204 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EFortPartialPathUsage.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EFortPartialPathUsage : uint8 {
|
|
Always,
|
|
OnlyGoalsOnDestructible,
|
|
Never,
|
|
};
|
|
|