mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
34 lines
838 B
C++
34 lines
838 B
C++
#include "FortAlterationModScreenBase.h"
|
|
|
|
void UFortAlterationModScreenBase::SetItemForAlterationsModding(UFortAlterableItem* InAlterableItem) {
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void UFortAlterationModScreenBase::HandleBackAction(bool& bPassThrough) {
|
|
}
|
|
|
|
void UFortAlterationModScreenBase::ConfirmSelection() {
|
|
}
|
|
|
|
void UFortAlterationModScreenBase::CancelSelection() {
|
|
}
|
|
|
|
bool UFortAlterationModScreenBase::AreIngredientRequirementsMent(const TArray<FFortItemQuantityPair>& RequiredIngredients) {
|
|
return false;
|
|
}
|
|
|
|
UFortAlterationModScreenBase::UFortAlterationModScreenBase() {
|
|
this->AlterationsToEdit = NULL;
|
|
this->AlterationSlotOptions = NULL;
|
|
this->ItemInspectionMainItemDetailsHostPanel = NULL;
|
|
this->AlterationsExtraDetailsPanel = NULL;
|
|
this->AlterationModOptinScreenClass = NULL;
|
|
this->CurrentAlterationOptionInternal = NULL;
|
|
}
|
|
|