1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-07 13:27:13 +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

@ -50,7 +50,14 @@ static const EnumElement g_SqMod[] = {
{_SC("Inf"), INFINITY}, {_SC("Inf"), INFINITY},
{_SC("Nan"), NAN}, {_SC("Nan"), NAN},
{_SC("MaxTasks"), SQMOD_MAX_TASKS}, {_SC("MaxTasks"), SQMOD_MAX_TASKS},
{_SC("MaxRoutines"), SQMOD_MAX_ROUTINES} {_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}
}; };
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------