mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
12 lines
206 B
C++
12 lines
206 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class SettingsLoader
|
|
{
|
|
std::string _baseUrl;
|
|
public:
|
|
SettingsLoader(std::string baseUrl) : _baseUrl(baseUrl) {}
|
|
|
|
std::string GetSettingsString(std::string groupName);
|
|
}; |