iw4x-client/iw4/Components/Party.hpp
2015-12-25 21:42:35 +01:00

24 lines
356 B
C++

namespace Components
{
class Party : public Component
{
public:
Party();
~Party();
const char* GetName() { return "Party"; };
static void Connect(Network::Address target);
private:
struct JoinContainer
{
Network::Address Target;
std::string Challenge;
DWORD JoinTime;
bool Valid;
};
static JoinContainer Container;
};
}