Files
2026-04-22 15:51:07 +02: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;
}