mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
dcf0a68b80
This reverts commit 43bda9c462
.
21 lines
423 B
Plaintext
21 lines
423 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Obtain children of a config entry
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Parent Entry Class Children <ARRAY>
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_name", "_cfgClass"];
|
|
|
|
private "_classes";
|
|
_classes = format ["configName inheritsFrom _x == '%1'", _name] configClasses (configFile >> _cfgClass);
|
|
|
|
[_classes, {configName _this}] call FUNC(map) // return
|