Whisper Yelled At me 😢

This commit is contained in:
coah
2026-03-04 04:37:07 -06:00
parent 7f59a61704
commit edfc280090
35 changed files with 506 additions and 461 deletions

View File

@@ -8,10 +8,6 @@
#define SOCKET_CLIENT_END 0
#define SOCKET_SERVER_END 1
// Forward declare P2P types
class IP2PConnectionManager;
enum EP2PChannel;
class SocketAddress;
class ServerConnection;
@@ -135,11 +131,4 @@ public:
bool isClosing() { return m_endClosed[SOCKET_CLIENT_END] || m_endClosed[SOCKET_SERVER_END]; }
BYTE getSmallId() { return networkPlayerSmallId; }
#ifdef _WINDOWS64
// P2P direct connection support
static IP2PConnectionManager* s_p2pManager;
static void SetP2PManager(IP2PConnectionManager* manager) { s_p2pManager = manager; }
static IP2PConnectionManager* GetP2PManager() { return s_p2pManager; }
#endif
};