mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
27 lines
651 B
C++
27 lines
651 B
C++
#include "FortLlamaStoreOfferInfo.h"
|
|
|
|
UFortCardPackItemDefinition* UFortLlamaStoreOfferInfo::GetLlamaOfferDisplayAsset() const {
|
|
return NULL;
|
|
}
|
|
|
|
TSoftObjectPtr<UTexture2D> UFortLlamaStoreOfferInfo::GetDisplayAssetXrayImage() const {
|
|
return NULL;
|
|
}
|
|
|
|
UFortPackPersonality* UFortLlamaStoreOfferInfo::GetDisplayAssetPersonality() const {
|
|
return NULL;
|
|
}
|
|
|
|
TSoftObjectPtr<UTexture2D> UFortLlamaStoreOfferInfo::GetDisplayAssetImage() const {
|
|
return NULL;
|
|
}
|
|
|
|
UTexture* UFortLlamaStoreOfferInfo::GetDisplayAssetIcon() const {
|
|
return NULL;
|
|
}
|
|
|
|
UFortLlamaStoreOfferInfo::UFortLlamaStoreOfferInfo() {
|
|
this->LlamaOfferDisplayAsset = NULL;
|
|
}
|
|
|