mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
16 lines
401 B
C++
16 lines
401 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() {
|
|
this->Tooltip = NULL;
|
|
this->SummaryTooltip = NULL;
|
|
this->StatList = NULL;
|
|
}
|
|
|