1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-01-31 09:57:14 +01:00

Export entity limits as constants.

This commit is contained in:
Sandu Liviu Catalin 2019-06-16 03:35:17 +03:00
parent 6919e38866
commit d3e6adea14

View File

@ -49,8 +49,15 @@ static const EnumElement g_SqMod[] = {
{_SC("Infinity"), INFINITY},
{_SC("Inf"), INFINITY},
{_SC("Nan"), NAN},
{_SC("MaxTasks"), SQMOD_MAX_TASKS},
{_SC("MaxRoutines"), SQMOD_MAX_ROUTINES}
{_SC("MaxTasks"), SQMOD_MAX_TASKS},
{_SC("MaxRoutines"), SQMOD_MAX_ROUTINES},
{_SC("MaxBlips"), SQMOD_BLIP_POOL},
{_SC("MaxCheckpoints"), SQMOD_CHECKPOINT_POOL},
{_SC("MaxKeybinds"), SQMOD_KEYBIND_POOL},
{_SC("MaxObjects"), SQMOD_OBJECT_POOL},
{_SC("MaxPickups"), SQMOD_PICKUP_POOL},
{_SC("MaxPlayers"), SQMOD_PLAYER_POOL},
{_SC("MaxVehicles"), SQMOD_VEHICLE_POOL}
};
// ------------------------------------------------------------------------------------------------