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

19 lines
528 B
C++

#include "FortItemRatingIndicator.h"
void UFortItemRatingIndicator::SetItemViewContext(TScriptInterface<IFortItemViewContextInterface> ItemViewContext) {
}
void UFortItemRatingIndicator::SetItemToRepresent(const UFortItem* NewItemToRepresent) {
}
void UFortItemRatingIndicator::SetItemToCompareWith(const UFortItem* NewItemToCompareWith) {
}
UFortItemRatingIndicator::UFortItemRatingIndicator() {
this->RatingValue = 0;
this->ComparisonResult = EFortBuffState::NoChange;
this->ShouldAppearEnchanted = false;
}