mirror of
https://github.com/HikikoMarmy/Champions-Reborn-Server.git
synced 2026-04-04 16:49:47 -03:00
15 lines
280 B
C++
15 lines
280 B
C++
#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;
|
|
}; |