2023-10-29 22:26:43 +08:00
|
|
|
|
|
|
|
#ifndef SAMPSRV_VEHICLEPOOL_H
|
|
|
|
#define SAMPSRV_VEHICLEPOOL_H
|
|
|
|
|
|
|
|
class CVehiclePool // size: WL 24216
|
|
|
|
{
|
|
|
|
private:
|
2023-11-22 23:39:02 +08:00
|
|
|
char field_0[212];
|
|
|
|
int field_D4[2000];
|
|
|
|
int field_2014[2000];
|
2024-01-04 23:08:18 +08:00
|
|
|
int field_3F54[2000];
|
2023-11-22 23:39:02 +08:00
|
|
|
int field_5E94;
|
|
|
|
|
|
|
|
public:
|
|
|
|
CVehiclePool();
|
2023-12-12 22:44:00 +08:00
|
|
|
~CVehiclePool();
|
2023-11-22 23:39:02 +08:00
|
|
|
|
2023-12-12 22:44:00 +08:00
|
|
|
BOOL Delete(VEHICLEID VehicleID);
|
2023-12-13 23:59:53 +08:00
|
|
|
|
|
|
|
int GetModelCount();
|
2023-10-29 22:26:43 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|