Epoch/Sources/epoch_server/init/fn_postinit.sqf
2016-06-13 11:54:19 -05:00

24 lines
602 B
Plaintext

/*
Author: Aaron Clark - EpochMod.com
Contributors:
Description:
Initalizes variables and starts functions
Licence:
Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike
Github:
https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_server/init/fn_postinit.sqf
*/
if (isNil "Epoch_SStart") then {
Epoch_SStart = true;
[] spawn {
call compile preprocessFileLineNumbers "epoch_code\init\both_init.sqf";
call compile preprocessFileLineNumbers "\epoch_server\init\server_init.sqf";
};
};
true