mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ffaa195fe5
* Fixed headers to work with silentspike python script * Fixed rest of the files * Fixed ace-team
23 lines
450 B
Plaintext
23 lines
450 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Obtain children of a config entry
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Parent Entry Class Children <ARRAY>
|
|
|
|
* Example:
|
|
* [bob] call ace_common_fnc_getChildren
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_name", "_cfgClass"];
|
|
|
|
private _classes = format ["configName inheritsFrom _x == '%1'", _name] configClasses (configFile >> _cfgClass);
|
|
|
|
_classes apply {configName _x} // return
|