Files
FNGameProj/Source/FortniteGame/Private/AthenaSprayItemDefinition.cpp
T

22 lines
551 B
C++

#include "AthenaSprayItemDefinition.h"
#include "GameplayTagContainer.h"
#include "GameplayTagsManager.h"
bool UAthenaSprayItemDefinition::ShouldUseBannerAsTexture() const {
return false;
}
TSoftObjectPtr<UTexture2D> UAthenaSprayItemDefinition::GetDecalTexture() const {
return NULL;
}
TSoftObjectPtr<UMaterialInterface> UAthenaSprayItemDefinition::GetDecalMaterial() const {
return NULL;
}
UAthenaSprayItemDefinition::UAthenaSprayItemDefinition() {
this->bUseBannerAsTexture = false;
ItemType = EFortItemType::AthenaDance;
}