12 lines
307 B
C++
12 lines
307 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
#include "Data/API/APIData.h"
|
|
|
|
FString UAPIData::GetAPIEndpoint(const FGameplayTag& APIEndpoint)
|
|
{
|
|
const FString ResourceName = Resources.FindChecked(APIEndpoint);
|
|
|
|
return InvokeUrl + "/" + Stage + "/" + ResourceName;
|
|
}
|