mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
31 lines
598 B
C++
31 lines
598 B
C++
#include "FortMtxStoreRootBase.h"
|
|
|
|
void UFortMtxStoreRootBase::SetStorefrontNames(const TArray<FString>& InStorefrontNames) {
|
|
}
|
|
|
|
void UFortMtxStoreRootBase::PushStoreSelection() {
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FMtxBreakdown UFortMtxStoreRootBase::GetMtxBreakdown() const {
|
|
return FMtxBreakdown{};
|
|
}
|
|
|
|
void UFortMtxStoreRootBase::GenerateOfferWidget_Implementation(UFortStoreFrontOfferInfo* OfferData) {
|
|
}
|
|
|
|
|
|
bool UFortMtxStoreRootBase::AreOffersLoaded() const {
|
|
return false;
|
|
}
|
|
|
|
UFortMtxStoreRootBase::UFortMtxStoreRootBase() {
|
|
this->MtxStoreSelectionWidget = NULL;
|
|
this->MtxStoreSelectionClass = NULL;
|
|
}
|
|
|