Files
Sun1602/Server/GameServer/AchievementFactory.cpp
2022-10-26 12:25:11 +08:00

21 lines
438 B
C++

#include "StdAfx.h"
#include ".\areaconquestfactory.h"
#include ".\AreaConquestSection.h"
AchievementFactory::AchievementFactory(void)
{
}
AchievementFactory::~AchievementFactory(void)
{
}
void AchievementFactory::Init( DWORD dwPoolSize )
{
m_pACSectionPool.Initialize( dwPoolSize, 0, "AreaConquestSection", AssertionLogger4Pool_Server );
AreaConquestSection::SetPool( &m_pACSectionPool );
}
void AchievementFactory::Release()
{
;
}