Files
2026-04-22 15:51:07 +02:00

41 lines
1.2 KiB
C++

#include "AthenaCustomizationPicker.h"
void UAthenaCustomizationPicker::SetFilter(const FName FilterName) {
}
void UAthenaCustomizationPicker::RefreshView(bool CategoryChanging, bool FilterChanged) {
}
void UAthenaCustomizationPicker::HandleSelectedItemHasChanged(bool ItemChanged, bool AmmoChanged, bool IngredientsChanged) {
}
void UAthenaCustomizationPicker::HandleFilterTabSelected(FName TabNameID) {
}
void UAthenaCustomizationPicker::HandleFilterTabButtonCreated(FName TabNameID, UCommonButton* TabButton) {
}
FText UAthenaCustomizationPicker::GetQualifiedFilterDisplayName(EAthenaFilterDisplayType InTopFilterDisplaySetting) const {
return FText::GetEmpty();
}
void UAthenaCustomizationPicker::EndCustomizationCategory() {
}
void UAthenaCustomizationPicker::BeginCustomizationCategory(EAthenaCustomizationCategory Category, int32 SubslotToEdit) {
}
UAthenaCustomizationPicker::UAthenaCustomizationPicker() {
this->FilterTabButtonType = NULL;
this->FilterTabButtonStyle = NULL;
this->FilterTabList = NULL;
this->CustomizeCategory = EAthenaCustomizationCategory::None;
this->SubslotIndex = 0;
this->bAllowCommits = true;
this->ItemListeningTo = NULL;
}