mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 14:37:29 +08:00
22 lines
314 B
C++
22 lines
314 B
C++
|
|
#ifndef SAMPSRV_ACTORPOOL_H
|
|
#define SAMPSRV_ACTORPOOL_H
|
|
|
|
class CActorPool // size: WL 12004
|
|
{
|
|
private:
|
|
int field_0[1000];
|
|
int field_FA0[1000];
|
|
int field_1F40[1000];
|
|
int m_iPoolSize;
|
|
public:
|
|
CActorPool();
|
|
~CActorPool();
|
|
|
|
BOOL Delete(ACTORID ActorID);
|
|
|
|
int GetPoolSize() { return m_iPoolSize; };
|
|
};
|
|
|
|
#endif
|