mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
12 lines
322 B
C++
12 lines
322 B
C++
#include "stdafx.h"
|
|
#include "SettingsLoader.h"
|
|
#include "RobloxServicesTools.h"
|
|
#include "HttpTools.h"
|
|
|
|
|
|
std::string SettingsLoader::GetSettingsString(std::string groupName)
|
|
{
|
|
std::string url = GetSettingsUrl(_baseUrl, groupName.c_str(), "76E5A40C-3AE1-4028-9F10-7C62520BD94F");
|
|
return HttpTools::httpGetString(url);
|
|
}
|