Small note

This commit is contained in:
dawidg81 2026-03-08 15:53:52 +01:00
commit 0df1192679
2 changed files with 3 additions and 1 deletions

View file

@ -2,6 +2,7 @@
#include "Socket.hpp"
#include <winsock.h>
#include <thread>
bool running = false;
@ -16,7 +17,7 @@ int main() {
socket.winBind();
socket.winListen();
socket.running = true;
socket.running = true;
socket.winAccept();
return 0;