mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
39 lines
775 B
C++
39 lines
775 B
C++
#include "FortStoreSummary.h"
|
|
|
|
void UFortStoreSummary::ShowMulchConfirmationModal() {
|
|
}
|
|
|
|
void UFortStoreSummary::SetIsInChoiceSelectionMode(bool InIsInChoiceSelectionMode) {
|
|
}
|
|
|
|
void UFortStoreSummary::SetCards(const TArray<FCard>& Cards) {
|
|
}
|
|
|
|
void UFortStoreSummary::NotifyPanelDeactivated() {
|
|
}
|
|
|
|
void UFortStoreSummary::NotifyPanelActivated() {
|
|
}
|
|
|
|
void UFortStoreSummary::HideMulchConfirmationModal() {
|
|
}
|
|
|
|
|
|
void UFortStoreSummary::HandleContextMenuOpenChanged(bool bIsOpen) {
|
|
}
|
|
|
|
bool UFortStoreSummary::GetIsInChoiceSelectionMode() const {
|
|
return false;
|
|
}
|
|
|
|
void UFortStoreSummary::FinalizeFavoriteStatus() {
|
|
}
|
|
|
|
|
|
UFortStoreSummary::UFortStoreSummary() {
|
|
this->TileView = NULL;
|
|
this->MulchConfirmationModalClass = NULL;
|
|
this->MulchConfirmationModal = NULL;
|
|
}
|
|
|