mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
16 lines
348 B
Plaintext
16 lines
348 B
Plaintext
|
/**
|
||
|
* fn_getRadialInteractionEntries_f.sqf
|
||
|
* @Descr: N/A
|
||
|
* @Author: Glowbal
|
||
|
*
|
||
|
* @Arguments: []
|
||
|
* @Return:
|
||
|
* @PublicAPI: false
|
||
|
*/
|
||
|
|
||
|
private ["_menuName","_currentEntries"];
|
||
|
_menuName = [_this, 0, "",[""]] call BIS_fnc_Param;
|
||
|
|
||
|
_currentEntries = missionNamespace getvariable ["cse_radiusInteraction_f_entries_"+_menuName, []];
|
||
|
|
||
|
_currentEntries;
|