mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-01 23:35:41 +00:00
this gets rid of a bunch of unclear cases which I mistakenly created while refactoring for this rewrite. One example is having to call into TTCPServer to do UDP sending in some cases.
13 lines
252 B
C++
13 lines
252 B
C++
#pragma once
|
|
|
|
#include "Common.h"
|
|
|
|
class TConfig {
|
|
public:
|
|
explicit TConfig(const std::string& ConfigFile);
|
|
|
|
private:
|
|
static std::string RemoveComments(const std::string& Line);
|
|
static void SetValues(const std::string& Line, int Index);
|
|
};
|