Files
ProjectEleri/Plugins/DirectiveUtilities/Source/DirectiveUtilitiesRuntime/Private/Libraries/DirectiveUtilTextFunctionLibrary.cpp
2026-07-15 19:17:47 +02:00

10 lines
233 B
C++

// Copyright (c) 2026 Unreal Directive. Licensed under the MIT License.
#include "Libraries/DirectiveUtilTextFunctionLibrary.h"
bool UDirectiveUtilTextFunctionLibrary::IsNotEmpty(const FText& Text)
{
return !Text.IsEmpty();
}