mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
28 lines
634 B
C++
28 lines
634 B
C++
#include "FortCampaignTeamMemberXpBoost.h"
|
|
|
|
void UFortCampaignTeamMemberXpBoost::SetConsumeRequestInProgress(bool bIsRequestInProgress) {
|
|
}
|
|
|
|
|
|
|
|
|
|
int32 UFortCampaignTeamMemberXpBoost::GetCurrentBoostAmount() const {
|
|
return 0;
|
|
}
|
|
|
|
UCommonButton* UFortCampaignTeamMemberXpBoost::GetBoostActivationButton() const {
|
|
return NULL;
|
|
}
|
|
|
|
void UFortCampaignTeamMemberXpBoost::CenterWidget() {
|
|
}
|
|
|
|
UFortCampaignTeamMemberXpBoost::UFortCampaignTeamMemberXpBoost() {
|
|
this->Banner_MemberBanner = NULL;
|
|
this->Text_MemberName = NULL;
|
|
this->Text_Boost = NULL;
|
|
this->Image_BoostIcon = NULL;
|
|
this->Button_ActivateBoost = NULL;
|
|
}
|
|
|