10 lines
233 B
C++
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();
|
|||
|
|
}
|