mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
27 lines
559 B
C++
27 lines
559 B
C++
#include "AthenaCosmeticAccountItem.h"
|
|
|
|
bool UAthenaCosmeticAccountItem::HasMultipleVariants() {
|
|
return false;
|
|
}
|
|
|
|
bool UAthenaCosmeticAccountItem::HasCosmeticVariance() const {
|
|
return false;
|
|
}
|
|
|
|
FText UAthenaCosmeticAccountItem::GetLockerItemTypeText() const {
|
|
return FText::GetEmpty();
|
|
}
|
|
|
|
FText UAthenaCosmeticAccountItem::GetLockerDescriptionText() const {
|
|
return FText::GetEmpty();
|
|
}
|
|
|
|
UFortHero* UAthenaCosmeticAccountItem::GetHero() const {
|
|
return NULL;
|
|
}
|
|
|
|
UAthenaCosmeticAccountItem::UAthenaCosmeticAccountItem() {
|
|
Hero = NULL;
|
|
}
|
|
|