mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
23 lines
635 B
C++
23 lines
635 B
C++
#include "FortCollectionBookRewardCardWidget.h"
|
|
|
|
void UFortCollectionBookRewardCardWidget::SetRewards(const FFortRewardInfo& Rewards) {
|
|
}
|
|
|
|
bool UFortCollectionBookRewardCardWidget::HasRewards() const {
|
|
return false;
|
|
}
|
|
|
|
void UFortCollectionBookRewardCardWidget::ClearRewards() {
|
|
}
|
|
|
|
UFortCollectionBookRewardCardWidget::UFortCollectionBookRewardCardWidget() {
|
|
this->ItemCardWidget = NULL;
|
|
this->MultiItemRewardOverlay = NULL;
|
|
this->ChoiceRewardOverlay = NULL;
|
|
this->CheckmarkImage = NULL;
|
|
this->UpdateCardInterval = 2.00f;
|
|
this->ItemCardSize = EFortItemCardSize::XS;
|
|
this->bDisplayAsRewardCard = true;
|
|
}
|
|
|