mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
24 lines
602 B
Plaintext
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
|