mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
13 lines
252 B
Plaintext
13 lines
252 B
Plaintext
|
/**
|
||
|
* fn_getCanInteract.sqf
|
||
|
* @Descr: N/A
|
||
|
* @Author: Glowbal
|
||
|
*
|
||
|
* @Arguments: []
|
||
|
* @Return:
|
||
|
* @PublicAPI: false
|
||
|
*/
|
||
|
|
||
|
private ["_unit","_return"];
|
||
|
_unit = [_this, 0, objNull, [objNull]] call BIS_fnc_param;
|
||
|
(_unit getvariable ["cse_canInteract",0])
|