mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
19 lines
561 B
C++
19 lines
561 B
C++
#include "FortCampaignHeroLoadoutItemDefinition.h"
|
|
|
|
TArray<FFortCrewSlotInformation> UFortCampaignHeroLoadoutItemDefinition::GetSlots() const {
|
|
return TArray<FFortCrewSlotInformation>();
|
|
}
|
|
|
|
int32 UFortCampaignHeroLoadoutItemDefinition::GetSlotIndexByName(const FName& SlotName) const {
|
|
return 0;
|
|
}
|
|
|
|
FFortCrewSlotInformation UFortCampaignHeroLoadoutItemDefinition::GetCommanderSlot() const {
|
|
return FFortCrewSlotInformation{};
|
|
}
|
|
|
|
UFortCampaignHeroLoadoutItemDefinition::UFortCampaignHeroLoadoutItemDefinition() {
|
|
this->GadgetSlotsAllowed = 2;
|
|
}
|
|
|