This commit is contained in:
Glowbal 2015-03-07 13:47:28 +01:00
parent 9590661cc5
commit 239ffdc4d2
3 changed files with 37 additions and 21 deletions

View File

@ -1,11 +1,16 @@
/**
* fn_assignMedicRoles.sqf
* @Descr: N/A
* @Author: Glowbal
/*
* Author: Glowbal
* Assign a medical role to a unit
*
* @Arguments: []
* @Return:
* @PublicAPI: false
* Arguments:
* 0: The module logic <LOGIC>
* 1: units <ARRAY>
* 2: activated <BOOL>
*
* Return Value:
* None <NIL>
*
* Public: No
*/
#include "script_component.hpp"

View File

@ -1,11 +1,16 @@
/**
* fn_assignMedicalFacility.sqf
* @Descr: Register synchronized objects from passed object as a medical facility for CMS.
* @Author: Glowbal
/*
* Author: Glowbal
* Register synchronized objects from passed object as a medical facility
*
* @Arguments: [logic OBJECT]
* @Return: BOOL
* @PublicAPI: true
* Arguments:
* 0: The module logic <LOGIC>
* 1: units <ARRAY>
* 2: activated <BOOL>
*
* Return Value:
* None <NIL>
*
* Public: No
*/
#include "script_component.hpp"

View File

@ -1,13 +1,19 @@
/**
* fn_assignMedicalVehicle.sqf
* @Descr: N/A
* @Author: Glowbal
/*
* Author: Glowbal
* Assign vehicle as a medical vehicle
*
* @Arguments: []
* @Return:
* @PublicAPI: false
* Arguments:
* 0: The module logic <LOGIC>
* 1: units <ARRAY>
* 2: activated <BOOL>
*
* Return Value:
* None <NIL>
*
* Public: No
*/
#include "script_component.hpp"
private ["_logic","_setting","_objects", "_list", "_splittedList", "_nilCheckPassedList", "_parsedList"];