iw4x-client/src/Components/Modules/NetworkDebug.hpp

18 lines
281 B
C++
Raw Normal View History

2022-12-05 13:45:14 -05:00
#pragma once
namespace Components
{
class NetworkDebug : public Component
{
public:
NetworkDebug();
private:
static void CL_ParseServerMessage_Hk(Game::msg_t* msg);
static void CL_ParseBadPacket_f();
2023-03-15 14:50:23 -04:00
static int I_stricmp_Stub(const char* s0, const char* s1);
2022-12-05 13:45:14 -05:00
};
}