mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-13 01:05:37 +00:00
20 lines
268 B
C++
20 lines
268 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 field_2EE0;
|
|
public:
|
|
CActorPool();
|
|
~CActorPool();
|
|
|
|
BOOL Delete(ACTORID ActorID);
|
|
};
|
|
|
|
#endif
|