Files
DedicatedServerCourse/Source/DedicatedServers/Private/Data/API/APIData.cpp
2026-03-15 17:31:56 -04:00

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;
}