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

41 lines
951 B
C++
Executable file

#include "CommunityGoalWrapper.h"
void UCommunityGoalWrapper::UpdateAllGoalsInitialized() {
}
bool UCommunityGoalWrapper::RewardReceived() const {
return false;
}
void UCommunityGoalWrapper::RequestGoalStateData() {
}
void UCommunityGoalWrapper::RequestFactionsData() {
}
void UCommunityGoalWrapper::NextPeriod() {
}
void UCommunityGoalWrapper::InitializeGoalTierTargetValues(UCommunityGoal* goalToInitialize) {
}
UCommunityGoalFaction* UCommunityGoalWrapper::GetPlayerCurrentFaction(UObject* WorldContext) {
return NULL;
}
void UCommunityGoalWrapper::ClaimRewardMessage(UObject* WorldContext, FCommunityRewardNotification rewardNotification) {
}
void UCommunityGoalWrapper::ClaimReward() {
}
void UCommunityGoalWrapper::CheckUI() {
}
UCommunityGoalWrapper::UCommunityGoalWrapper() {
this->HasCGS = false;
this->LastCollectedRewardID = 0;
this->FreeBeerRewardActive = false;
this->AreAllGoalsInitialized = false;
}