mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-01 23:35:41 +00:00
16 lines
340 B
C++
16 lines
340 B
C++
#pragma once
|
|
|
|
#include "Common.h"
|
|
|
|
class TConfig {
|
|
public:
|
|
explicit TConfig(const std::string& ConfigFile);
|
|
|
|
private:
|
|
static void ReadJson();
|
|
static void PrintDebug();
|
|
static void ManageJson();
|
|
static std::string RemoveComments(const std::string& Line);
|
|
static void SetValues(const std::string& Line, int Index);
|
|
};
|