mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
7 lines
328 B
Plaintext
7 lines
328 B
Plaintext
#include "script_component.hpp"
|
|
private ["_round"];
|
|
_round = _this select 0;
|
|
if(alive _round) then {
|
|
GVAR(trackedObjects) set[(count GVAR(trackedObjects)), _round];
|
|
[FUNC(trackFragRound), 0, [_round, (getPosASL _round), (velocity _round), (typeOf _round), time, objNull, false, 0, 0]] call cba_fnc_addPerFrameHandler;
|
|
}; |