14 lines
317 B
C++
Executable file
14 lines
317 B
C++
Executable file
#include "CommunityGoalSettings.h"
|
|
|
|
UCommunityGoal* UCommunityGoalSettings::GetGoal(ECommunityGoalIndex Goal) const {
|
|
return NULL;
|
|
}
|
|
|
|
UCommunityGoal* UCommunityGoalSettings::FindGoal(const FString& Goal) const {
|
|
return NULL;
|
|
}
|
|
|
|
UCommunityGoalSettings::UCommunityGoalSettings() {
|
|
this->DSMUGoal = NULL;
|
|
}
|
|
|