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

31 lines
743 B
C++
Executable file

#include "RewardsSubSystem.h"
bool URewardsSubSystem::ShouldPendingRewardsBeShown() const {
return false;
}
bool URewardsSubSystem::ShouldPendingRewardsBeGiven() const {
return false;
}
bool URewardsSubSystem::Receive_GetPendingRewards(UObject* WorldContext, FPendingRewardsStats& OutStats, FPendingRewards& OutRewards) const {
return false;
}
bool URewardsSubSystem::HasPendingRewards() const {
return false;
}
bool URewardsSubSystem::GetPendingRewards(FPendingRewardsStats& OutStats, FPendingRewards& OutRewards) const {
return false;
}
void URewardsSubSystem::ClearPendingRewards() {
}
void URewardsSubSystem::ApplyPendingRewards(AFSDPlayerController* Controller) {
}
URewardsSubSystem::URewardsSubSystem() {
}