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

26 lines
464 B
C++
Executable file

#include "FSDAIController.h"
void AFSDAIController::SetAlerted(bool isAlerted) {
}
void AFSDAIController::ResumeLogic() {
}
void AFSDAIController::RegisterBlackboardChanges(const FName& Key) {
}
void AFSDAIController::PauseLogic() {
}
void AFSDAIController::OnAttackingChanged(bool attacking) {
}
bool AFSDAIController::GetIsAlerted() const {
return false;
}
AFSDAIController::AFSDAIController() {
this->LOSTraceChannel = ECC_GameTraceChannel3;
}