initial commit

This commit is contained in:
Benjamin Kyd
2019-06-05 00:45:50 +01:00
commit c8014ec81e
610 changed files with 177002 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
/*
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;