mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
26 lines
578 B
C++
26 lines
578 B
C++
#include "FortLlamaStoreBase.h"
|
|
|
|
|
|
void UFortLlamaStoreBase::SetupFocus() {
|
|
}
|
|
|
|
void UFortLlamaStoreBase::OnStoreStateChanged(EFortStoreState NewStoreState) {
|
|
}
|
|
|
|
void UFortLlamaStoreBase::OnStorePurchaseCompleted() {
|
|
}
|
|
|
|
|
|
UFortLlamaStoreBase::UFortLlamaStoreBase() {
|
|
this->OfferEntryBox = NULL;
|
|
this->OfferButtonGroup = NULL;
|
|
this->OfferDetails = NULL;
|
|
this->StoreData = NULL;
|
|
this->Button_UnopenedLlamas = NULL;
|
|
this->ProgressModal = NULL;
|
|
this->PendingPurchaseOffer = NULL;
|
|
this->StoreOpeningCardPack = NULL;
|
|
this->bHideSoldOffers = false;
|
|
}
|
|
|