mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 14:37:29 +08:00
28 lines
450 B
C++
28 lines
450 B
C++
|
|
#include "main.h"
|
|
|
|
CActorPool::CActorPool()
|
|
{
|
|
for(ACTORID ActorID = 0; ActorID != MAX_ACTORS; ActorID++)
|
|
{
|
|
field_0[ActorID] = 0;
|
|
field_FA0[ActorID] = 0;
|
|
field_1F40[ActorID] = 0;
|
|
}
|
|
m_iPoolSize = 0;
|
|
}
|
|
|
|
CActorPool::~CActorPool()
|
|
{
|
|
for(ACTORID ActorID = 0; ActorID != MAX_ACTORS; ActorID++) {
|
|
Delete(ActorID);
|
|
}
|
|
}
|
|
|
|
BOOL CActorPool::Delete(ACTORID ActorID)
|
|
{
|
|
// TODO: CActorPool::Delete W .text:00464800 L .text:08094B80
|
|
return FALSE;
|
|
}
|
|
|