From 5e2eb7d67ae933b7566f1944d0bb7744da03d586 Mon Sep 17 00:00:00 2001 From: aura Date: Tue, 17 Feb 2026 23:42:09 +0100 Subject: move source stuff to its own folder --- .../scripting/include/smlib/dynarrays.inc | 24 ---------------------- 1 file changed, 24 deletions(-) delete mode 100644 sourcemod-1.5-dev/scripting/include/smlib/dynarrays.inc (limited to 'sourcemod-1.5-dev/scripting/include/smlib/dynarrays.inc') diff --git a/sourcemod-1.5-dev/scripting/include/smlib/dynarrays.inc b/sourcemod-1.5-dev/scripting/include/smlib/dynarrays.inc deleted file mode 100644 index 8a16011..0000000 --- a/sourcemod-1.5-dev/scripting/include/smlib/dynarrays.inc +++ /dev/null @@ -1,24 +0,0 @@ -#if defined _smlib_dynarray_included - #endinput -#endif -#define _smlib_dynarray_included - -#include - -/** - * Retrieves a cell value from an array. - * This is a wrapper around the Sourcemod Function GetArrayCell, - * but it casts the result as bool - * - * @param array Array Handle. - * @param index Index in the array. - * @param block Optionally specify which block to read from - * (useful if the blocksize > 0). - * @param asChar Optionally read as a byte instead of a cell. - * @return Value read. - * @error Invalid Handle, invalid index, or invalid block. - */ -stock bool:DynArray_GetBool(Handle:array, index, block=0, bool:asChar=false) -{ - return bool:GetArrayCell(array, index, block, asChar); -} -- cgit v1.2.3