Files
AltisLifeFramework/Altis_Life.Altis/dialog/function/fn_displayHandler.sqf
Benjamin Kyd c8014ec81e initial commit
2019-06-05 00:45:50 +01:00

15 lines
294 B
Plaintext

/*
File: fn_displayHandler.sqf
Author: Bryan "Tonic" Boardwine
Description:
Master display handler
*/
private ["_control","_code","_shift","_ctrlKey","_alt","_handled"];
_handled = false;
//Esc Key Handler
if ((_this select 1) isEqualTo 1) then {_handled = true;};
_handled;