ACE3/addons/common/functions/fnc_getChildren.sqf

21 lines
423 B
Plaintext
Raw Normal View History

2015-09-20 21:18:51 +00:00
/*
* Author: commy2
* Obtain children of a config entry
*
* Arguments:
* 0: Unit <OBJECT>
*
* Return Value:
* Parent Entry Class Children <ARRAY>
*
* Public: Yes
*/
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
2015-09-20 21:18:51 +00:00
params ["_name", "_cfgClass"];
2015-09-20 21:18:51 +00:00
private "_classes";
_classes = format ["configName inheritsFrom _x == '%1'", _name] configClasses (configFile >> _cfgClass);
2015-09-20 21:18:51 +00:00
[_classes, {configName _this}] call FUNC(map) // return