OLS/Source/ols/Private/Messages/OLSVerbMessage.cpp

12 lines
487 B
C++

// © 2024 Long Ly. All rights reserved. Any unauthorized use, reproduction, or distribution of this trademark is strictly prohibited and may result in legal action.
#include "Messages/OLSVerbMessage.h"
FString FOLSVerbMessage::ToString() const
{
FString HumanReadableMessage;
FOLSVerbMessage::StaticStruct()->ExportText(/*out*/ HumanReadableMessage, this, /*Defaults=*/ nullptr, /*OwnerObject=*/ nullptr, PPF_None, /*ExportRootScope=*/ nullptr);
return HumanReadableMessage;
}