mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-13 16:12:23 -07:00
15 lines
416 B
C++
15 lines
416 B
C++
#include "CogSampleBTTask_BlueprintBase.h"
|
|
|
|
//--------------------------------------------------------------------------------------------------------------------------
|
|
FString UCogSampleBTTask_BlueprintBase::GetStaticDescription() const
|
|
{
|
|
FString CustomDescripton = GetCustomStaticDescription();
|
|
|
|
if (CustomDescripton.IsEmpty() == false)
|
|
{
|
|
return CustomDescripton;
|
|
}
|
|
|
|
return Super::GetStaticDescription();
|
|
}
|