mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
20 lines
431 B
C++
20 lines
431 B
C++
#include "FortAIGoalProvider.h"
|
|
|
|
void UFortAIGoalProvider::UpdateGoals() {
|
|
}
|
|
|
|
bool UFortAIGoalProvider::InitializeGoalProvider(UWorld* ContextWorld, UFortAIAssignment* Assignment) {
|
|
return false;
|
|
}
|
|
|
|
UFortAIEncounterInfo* UFortAIGoalProvider::GetEncounterInfo() const {
|
|
return NULL;
|
|
}
|
|
|
|
UFortAIGoalProvider::UFortAIGoalProvider() {
|
|
this->World = NULL;
|
|
this->AssignmentOwner = NULL;
|
|
this->EncounterInfo = NULL;
|
|
}
|
|
|