Files
PHY/Plugins/GGS/Source/GenericGameSystem/Private/Interaction/GGS_InteractableInterface.cpp
2026-03-03 01:23:02 +08:00

17 lines
437 B
C++

// Copyright 2025 https://yuewu.dev/en All Rights Reserved.
#include "Interaction/GGS_InteractableInterface.h"
// Add default functionality here for any IGGS_InteractableInterface functions that are not pure virtual.
FText IGGS_InteractableInterface::GetInteractionDisplayNameText_Implementation() const
{
if (UObject* Object = _getUObject())
{
return FText::FromString(GetNameSafe(Object));
}
return FText::GetEmpty();
}