mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
17 lines
389 B
C++
17 lines
389 B
C++
#include "BulletWhipTrackerComponentBase.h"
|
|
|
|
void UBulletWhipTrackerComponentBase::UpdateVelocity(FVector CurrentVelocity) {
|
|
}
|
|
|
|
void UBulletWhipTrackerComponentBase::Reset(FVector StartLocationIn) {
|
|
}
|
|
|
|
void UBulletWhipTrackerComponentBase::Disable() {
|
|
}
|
|
|
|
UBulletWhipTrackerComponentBase::UBulletWhipTrackerComponentBase() {
|
|
bEnableGravityCheck = false;
|
|
CachedPassByPawn = NULL;
|
|
}
|
|
|