mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
26 lines
602 B
C++
26 lines
602 B
C++
#include "FortStoreFrontOfferWidgetBase.h"
|
|
|
|
void UFortStoreFrontOfferWidgetBase::SetupOffer(UFortStoreFrontOfferInfo* InOfferData) {
|
|
}
|
|
|
|
void UFortStoreFrontOfferWidgetBase::RemoveAllOffers() {
|
|
}
|
|
|
|
|
|
|
|
|
|
void UFortStoreFrontOfferWidgetBase::HandleCurrentlyViewedAccountInfoChanged(FFortPublicAccountInfo NewInfo) {
|
|
}
|
|
|
|
UFortStoreFrontOfferInfo* UFortStoreFrontOfferWidgetBase::GetOfferInfo() const {
|
|
return NULL;
|
|
}
|
|
|
|
void UFortStoreFrontOfferWidgetBase::AddOffer(UFortStoreFrontOfferInfo* InOfferData) {
|
|
}
|
|
|
|
UFortStoreFrontOfferWidgetBase::UFortStoreFrontOfferWidgetBase() {
|
|
this->OfferData = NULL;
|
|
}
|
|
|