iw4x-client/src/Components/Modules/Download.hpp
2016-06-04 17:06:49 +02:00

16 lines
256 B
C++

namespace Components
{
class Download : public Component
{
public:
Download();
~Download();
const char* GetName() { return "Download"; };
private:
static mg_mgr Mgr;
static void EventHandler(mg_connection *nc, int ev, void *ev_data);
};
}