move socket decls around

This commit is contained in:
Lion Kortlepel 2024-06-04 18:08:38 +02:00
parent 12711d77c7
commit 5714c3de76
No known key found for this signature in database
GPG Key ID: 4322FF2B4C71259B
2 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,6 @@ extern int ping;
extern bool ModWarningConfirmed;
#include <windows.h>
extern SOCKET LSocket,CSocket;
[[noreturn]] void CoreNetwork();
extern int ProxyPort;

View File

@ -21,6 +21,8 @@
#include <future>
#include <cmath>
extern SOCKET LSocket,CSocket;
namespace fs = std::filesystem;
std::string ListOfMods;
std::vector<std::string> Split(const std::string& String,const std::string& delimiter){