mirror of
https://github.com/Ed94/Cog.git
synced 2026-07-25 00:47:53 +00:00
10 lines
307 B
C++
10 lines
307 B
C++
#include "CogAbilityHelper.h"
|
|
|
|
//--------------------------------------------------------------------------------------------------------------------------
|
|
FString FCogAbilityHelper::CleanupName(FString Str)
|
|
{
|
|
Str.RemoveFromStart(TEXT("Default__"));
|
|
Str.RemoveFromEnd(TEXT("_c"));
|
|
return Str;
|
|
}
|