Files
FNGameProj/Source/FortniteUI/Private/AthenaProfileStatBox.cpp
2024-01-21 00:41:14 +01:00

19 lines
468 B
C++

#include "AthenaProfileStatBox.h"
void UAthenaProfileStatBox::SetStatView(UAthenaBaseStatView* InStatView, bool RespectParentStatView) {
}
FFortUIStatStyle UAthenaProfileStatBox::GetStatStyle(const FGameplayTag& InStat) const {
return FFortUIStatStyle{};
}
UAthenaBaseStatView* UAthenaProfileStatBox::GetBaseStatView() {
return NULL;
}
UAthenaProfileStatBox::UAthenaProfileStatBox() {
this->bRespectParentStatView = true;
this->StatView = NULL;
}