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