mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
30 lines
825 B
C++
30 lines
825 B
C++
#include "FortAlterationOptionsBase.h"
|
|
|
|
void UFortAlterationOptionsBase::ProcessAlterationOptions(bool bIntroAlterations) {
|
|
}
|
|
|
|
|
|
|
|
bool UFortAlterationOptionsBase::IsValidAlterationSlot() const {
|
|
return false;
|
|
}
|
|
|
|
void UFortAlterationOptionsBase::HandleAlterationsOptionSelected(UCommonButton* AlterationOptionButton, int32 GroupIndex) {
|
|
}
|
|
|
|
void UFortAlterationOptionsBase::HandleAlterationsOptionHovered(UCommonButton* AlterationOptionButton, int32 GroupIndex) {
|
|
}
|
|
|
|
bool UFortAlterationOptionsBase::DoAlterationOptionsExist(EFortAlterationOptionType OptionType) const {
|
|
return false;
|
|
}
|
|
|
|
UFortAlterationOptionsBase::UFortAlterationOptionsBase() {
|
|
this->AlterationOptionClass = NULL;
|
|
this->AlterationOptionButtons = NULL;
|
|
this->Item = NULL;
|
|
this->SlotIndex = 0;
|
|
this->bUpgradeOptionExists = false;
|
|
}
|
|
|