iw4x-client/iw4/Components/Party.hpp

24 lines
356 B
C++
Raw Normal View History

2015-12-25 15:42:35 -05:00
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;
};
}