mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +08:00
26 lines
374 B
C++
26 lines
374 B
C++
|
|
#ifndef SAMPSRV_VEHICLEPOOL_H
|
|
#define SAMPSRV_VEHICLEPOOL_H
|
|
|
|
class CVehiclePool // size: WL 24216
|
|
{
|
|
private:
|
|
char field_0[212];
|
|
int field_D4[2000];
|
|
int field_2014[2000];
|
|
int field_3F54[2000];
|
|
int m_iPoolSize;
|
|
|
|
public:
|
|
CVehiclePool();
|
|
~CVehiclePool();
|
|
|
|
BOOL Delete(VEHICLEID VehicleID);
|
|
|
|
int GetModelCount();
|
|
|
|
int GetPoolSize() { return m_iPoolSize; };
|
|
};
|
|
|
|
#endif
|