DRG-Femboy-Voice/Source/FSD/Private/SeasonLevelWidget.cpp
2025-04-15 12:39:31 -07:00

20 lines
456 B
C++
Executable file

#include "SeasonLevelWidget.h"
bool USeasonLevelWidget::TryClaimReward(bool isNormalReward) {
return false;
}
void USeasonLevelWidget::SetData(int32 InLevel, bool inLastInRow) {
}
USeasonLevelWidget::USeasonLevelWidget() : UUserWidget(FObjectInitializer::Get()) {
this->Level = 0;
this->SeasonLevel = 0;
this->IsNormalClaimed = false;
this->IsSpecialClaimed = false;
this->IsUnlocked = false;
this->IsLastInRow = false;
}