mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
16 lines
383 B
C++
16 lines
383 B
C++
#include "FortAbilityKit.h"
|
|
|
|
TArray<FText> UFortAbilityKit::GetDescription(const UObject* WorldContextObject, bool bFindSummaryTooltip) const {
|
|
return TArray<FText>();
|
|
}
|
|
|
|
void UFortAbilityKit::BP_GetGadgets(TArray<UFortGadgetItemDefinition*>& GadgetItemDefinitions) {
|
|
}
|
|
|
|
UFortAbilityKit::UFortAbilityKit() {
|
|
Tooltip = NULL;
|
|
SummaryTooltip = NULL;
|
|
StatList = NULL;
|
|
}
|
|
|