Reorganized and cleaned up the solution.

This commit is contained in:
HikikoMarmy
2026-03-02 12:37:07 +00:00
parent 8012f30170
commit d4dfbddf69
175 changed files with 1516 additions and 1136 deletions

15
Include/configuration.hpp Normal file
View 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;
};