Files
Leviathan/Server/GameServer/Game/Community/PartyMatching.cpp
T
2026-06-01 12:46:52 +02:00

25 lines
774 B
C++

//----------------------------------------------------------------------
//----------------------------------------------------------------------
//----------------------------------------------------------------------
#include "PartyMatching.h"
//----------------------------------------------------------------------
CPartyMatching::CPartyMatching()
{
static int index = 1;
m_index = index++;
Clear();
}
//----------------------------------------------------------------------
CPartyMatching::~CPartyMatching()
{
}
//----------------------------------------------------------------------
void CPartyMatching::Clear()
{
m_master = NULL;
m_use = false;
::ZeroMemory(&m_info, sizeof(m_info));
}
//----------------------------------------------------------------------