mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
14 lines
316 B
Plaintext
14 lines
316 B
Plaintext
/**
|
|
* fn_getWeaponItems_f.sqf
|
|
* @Descr: Get the weapon items from the unit.
|
|
* @Author: Glowbal
|
|
*
|
|
* @Arguments: [unit OBJECT]
|
|
* @Return:
|
|
* @PublicAPI: false
|
|
*/
|
|
#include "script_component.hpp"
|
|
private "_unit";
|
|
_unit = _this select 0;
|
|
|
|
[primaryWeaponItems _unit, secondaryWeaponItems _unit, handgunItems _unit]; |