mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
#include "FortSubGameSelectBase.h"
|
|
|
|
void UFortSubGameSelectBase::ShowRedeemCodeScreen(const ESubGame SubGame, const FOnRedeemCodeFlowComplete& CompletionDelegate) {
|
|
}
|
|
|
|
|
|
bool UFortSubGameSelectBase::IsSubGameOptionVisible(EFortSubgameSelectOption SubGameOption) const {
|
|
return false;
|
|
}
|
|
|
|
void UFortSubGameSelectBase::GetUpsellStorefrontNames(const ESubGame SubGame, TArray<FString>& OutStorefrontNames) const {
|
|
}
|
|
|
|
ESubGame UFortSubGameSelectBase::GetSubGameBySubGameSelectOption(EFortSubgameSelectOption SubGameOption) const {
|
|
return ESubGame::Campaign;
|
|
}
|
|
|
|
bool UFortSubGameSelectBase::GetShortDescription(EFortSubgameSelectOption SubGameOption, FText& ShortDescription) const {
|
|
return false;
|
|
}
|
|
|
|
bool UFortSubGameSelectBase::GetIsOnSale(EFortSubgameSelectOption SubGameOption) const {
|
|
return false;
|
|
}
|
|
|
|
bool UFortSubGameSelectBase::GetFullDescription(EFortSubgameSelectOption SubGameOption, FText& FullDescription) const {
|
|
return false;
|
|
}
|
|
|
|
bool UFortSubGameSelectBase::CheckRewardRate() const {
|
|
return false;
|
|
}
|
|
|
|
UFortSubGameSelectBase::UFortSubGameSelectBase() {
|
|
}
|
|
|