mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
16 lines
357 B
Plaintext
16 lines
357 B
Plaintext
//fnc_keyUp.sqf
|
|
#include "script_component.hpp"
|
|
|
|
GVAR(keyDown) = false;
|
|
if(GVAR(actionSelected)) then {
|
|
this = GVAR(selectedTarget);
|
|
_player = ACE_Player;
|
|
_target = GVAR(selectedTarget);
|
|
[GVAR(selectedTarget), player] call GVAR(selectedAction);
|
|
};
|
|
GVAR(expanded) = false;
|
|
GVAR(lastPath) = [];
|
|
GVAR(menuDepthPath) = [];
|
|
GVAR(vecLineMap) = [];
|
|
true
|