1
0
mirror of https://github.com/jummy0/sb2-decomp synced 2025-03-21 23:22:11 +01:00
sb2-decomp/network.h

20 lines
387 B
C
Raw Normal View History

class CNetwork
{
public:
CNetwork();
~CNetwork();
BOOL Create();
2024-06-01 20:56:16 -04:00
void FreeSessionList();
protected:
2024-06-18 12:05:45 -04:00
IDirectPlay2 m_pDP;
LPVOID m_pContext;
NetSessionList m_pSessions2;
LPVOID m_pUnkC;
addr m_pUnk18;
NetSessionList m_pSessions;
BOOL m_pUnk1C;
DPID m_pDPID;
NetPlayer m_players[4];
};