DRG-Femboy-Voice/Source/FSD/Private/ImpactIndicator.cpp
2025-04-15 12:39:31 -07:00

13 lines
437 B
C++
Executable file

#include "ImpactIndicator.h"
#include "Components/SceneComponent.h"
void AImpactIndicator::SetRadius(float NewRadius) {
}
AImpactIndicator::AImpactIndicator() {
this->Root = CreateDefaultSubobject<USceneComponent>(TEXT("Root"));
this->InnerScaler = CreateDefaultSubobject<USceneComponent>(TEXT("InnerScaler"));
this->OuterScaler = CreateDefaultSubobject<USceneComponent>(TEXT("OuterScaler"));
this->Radius = -1.00f;
}