mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
16 lines
284 B
C
16 lines
284 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EFortAbilityTargetingSource.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EFortAbilityTargetingSource : uint8 {
|
|
Camera,
|
|
PawnForward,
|
|
PawnTowardsFocus,
|
|
WeaponForward,
|
|
WeaponTowardsFocus,
|
|
Custom,
|
|
Max_None,
|
|
};
|
|
|