defines battalion info, integrates FBCB2 freqs and callsigns

This commit is contained in:
2024-02-01 01:23:21 -08:00
parent 8c40b107a5
commit 2d6fbcfcef
8 changed files with 404 additions and 33 deletions

View File

@@ -0,0 +1,14 @@
params [
["_cfg", configNull, [configNull]],
["_code", {}, [{}]]
];
if (isNull _cfg) exitWith {["Provided config is null!"] call BIS_fnc_error};
[_cfg] call _code;
// get children and recurse
private _childCfgs = _cfg call BIS_fnc_returnChildren;
{
[_x, _code] call milsim_fnc_recurseSubclasses;
} forEach _childCfgs;