[saco] Implement CPlayerPool ctor

This commit is contained in:
RD42
2024-02-06 22:20:05 +08:00
parent 125a453d53
commit c6b1f81352
6 changed files with 58 additions and 1 deletions

View File

@ -33,6 +33,7 @@ void CNetGame::InitPools()
{
m_pPools = (NETGAME_POOLS *)calloc(1, sizeof(NETGAME_POOLS));
m_pPools->pPlayerPool = new CPlayerPool();
m_pPools->pVehiclePool = new CVehiclePool();
}