mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
19 lines
468 B
C++
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;
|
|
}
|
|
|