Files
FNGameProj/Source/FortniteGame/Private/FortProjectileTrajectory.cpp
T
2024-06-07 01:17:09 +02:00

11 lines
376 B
C++

#include "FortProjectileTrajectory.h"
#include "Components/SplineComponent.h"
void AFortProjectileTrajectory::SetTrajectorySpline_Implementation(const TArray<FVector>& SplinePoints, const TArray<FVector>& SplineTangents) {
}
AFortProjectileTrajectory::AFortProjectileTrajectory() {
SplineComponent = CreateDefaultSubobject<USplineComponent>(TEXT("SplineComponent"));
}