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

18 lines
396 B
C++
Executable file

#include "TerrainDetectComponent.h"
void UTerrainDetectComponent::UpdateDetectLocation() {
}
void UTerrainDetectComponent::StopDetect() {
}
void UTerrainDetectComponent::StartDetect() {
}
UTerrainDetectComponent::UTerrainDetectComponent() {
this->StartDetectOnBeginPlay = true;
this->OnlyDetectOnServer = true;
this->KillActorOnPointRemoved = false;
this->DetectorId = -1;
}