2015-12-07 16:24:52 +00:00
|
|
|
/*
|
|
|
|
Author: Aaron Clark - EpochMod.com
|
|
|
|
|
|
|
|
Contributors:
|
|
|
|
|
|
|
|
Description:
|
|
|
|
Initalize both init and run custom client function compiler
|
|
|
|
|
|
|
|
Licence:
|
|
|
|
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
|
|
|
|
|
|
|
|
Github:
|
2016-06-13 16:54:19 +00:00
|
|
|
https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_code/init/fn_init.sqf
|
2015-12-07 16:24:52 +00:00
|
|
|
*/
|
2015-09-14 20:55:36 +00:00
|
|
|
if !(isNil "Epoch_CStart") exitWith { false };
|
|
|
|
Epoch_CStart = true;
|
2015-10-03 18:02:01 +00:00
|
|
|
if (!isDedicated && hasInterface) then {
|
2016-04-08 20:21:46 +00:00
|
|
|
call compile preprocessFileLineNumbers "epoch_code\init\both_init.sqf";
|
2015-09-14 20:55:36 +00:00
|
|
|
// Epoch Client Only function compiler
|
2016-04-08 20:21:46 +00:00
|
|
|
"CfgClientFunctions" call EPOCH_fnc_compiler;
|
2015-09-14 20:55:36 +00:00
|
|
|
};
|
|
|
|
true
|