SA-MP/bot/net/vehiclepool.cpp
2024-01-15 23:52:08 +08:00

15 lines
352 B
C++

#include "../main.h"
//----------------------------------------------------
CVehiclePool::CVehiclePool()
{
// loop through and initialize all net players to null and slot states to false
for(VEHICLEID VehicleID = 0; VehicleID < MAX_VEHICLES; VehicleID++) {
field_84D0[VehicleID] = 0;
}
}
//----------------------------------------------------