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