Files
ProjectEleri/Plugins/DirectiveUtilities/Source/DirectiveUtilitiesRuntime/Private/Libraries/DirectiveUtilTextFunctionLibrary.cpp

10 lines
233 B
C++
Raw Normal View History

2026-07-15 19:17:47 +02:00
// Copyright (c) 2026 Unreal Directive. Licensed under the MIT License.
#include "Libraries/DirectiveUtilTextFunctionLibrary.h"
bool UDirectiveUtilTextFunctionLibrary::IsNotEmpty(const FText& Text)
{
return !Text.IsEmpty();
}