Files
MissionTemplate/custom_scripts.hpp
IndigoFox a20f477ee0
All checks were successful
Generate testing snapshot / Create testing release (push) Successful in 37s
add better custom script support
2024-02-19 09:46:06 -08:00

11 lines
719 B
C++

// This file's contents will be included in the mission's CfgFunctions section, and serves to give you a place to define custom functions from files you've placed in /scripts.
class milsim_scripts {
class functions {
file = "scripts";
// Add your custom functions here, like so:
// class init {postInit = 1;}; // refers to scripts/fn_init.sqf. postInit=1 means it will be run on each machine when they're done loading the mission.
// class customFunction1 {}; // refers to the file scripts/fn_customFunction1.sqf, and is called as milsim_scripts_fnc_customFunction1
// class customFunction2 {}; // refers to the file scripts/fn_customFunction2.sqf, and is called as milsim_scripts_fnc_customFunction2
};
};