mirror of
https://github.com/HikikoMarmy/Champions-Reborn-Server.git
synced 2026-04-04 16:49:47 -03:00
Reorganized and cleaned up the solution.
This commit is contained in:
15
Include/configuration.hpp
Normal file
15
Include/configuration.hpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include <fstream>
|
||||
#include <string>
|
||||
|
||||
class Config
|
||||
{
|
||||
public:
|
||||
static bool Load( std::string filename );
|
||||
|
||||
static inline std::string service_ip;
|
||||
static inline uint16_t con_lobby_port;
|
||||
static inline uint16_t rta_lobby_port;
|
||||
static inline uint16_t discovery_port;
|
||||
};
|
||||
Reference in New Issue
Block a user