mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
15 lines
310 B
C++
15 lines
310 B
C++
#include "FortSplineAudioComponent.h"
|
|
|
|
void UFortSplineAudioComponent::SetSpline(USplineComponent* NewSpline) {
|
|
}
|
|
|
|
UAudioComponent* UFortSplineAudioComponent::GetAudioComponent() {
|
|
return NULL;
|
|
}
|
|
|
|
UFortSplineAudioComponent::UFortSplineAudioComponent() {
|
|
ClosestPointSound = NULL;
|
|
Spline = NULL;
|
|
}
|
|
|