This commit is contained in:
d1str4ught
2025-08-18 19:46:48 +02:00
parent 65582e25ec
commit 4be475f111
1334 changed files with 456590 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
#pragma once
#include "../eterLib/NetStream.h"
class CServerStateChecker : public CSingleton<CServerStateChecker>
{
public:
CServerStateChecker();
virtual ~CServerStateChecker();
void Create(PyObject* poWnd);
void AddChannel(UINT uServerIndex, const char* c_szAddr, UINT uPort);
void Request();
void Update();
void Initialize();
private:
typedef struct SChannel
{
UINT uServerIndex;
const char* c_szAddr;
UINT uPort;
} TChannel;
PyObject* m_poWnd;
std::list<TChannel> m_lstChannel;
CNetworkStream m_kStream;
};