
All checks were successful
Build / Build (push) Successful in 28s
This commit introduces a basic framework for mission management. - Includes `CfgMissions.hpp` in `config.cpp`. - Adds `missionManager` to `XEH_PREP.hpp` for event handling preparation. - Adds a placeholder call to `FUNC(missionManager)` in `XEH_postInit.sqf` with a TODO comment for future implementation.
30 lines
552 B
C++
30 lines
552 B
C++
PREP(attack);
|
|
PREP(attackModule);
|
|
PREP(defend);
|
|
PREP(defendModule);
|
|
PREP(defuse);
|
|
PREP(defuseModule);
|
|
PREP(delivery);
|
|
PREP(deliveryModule);
|
|
PREP(destroy);
|
|
PREP(destroyModule);
|
|
PREP(explosivesModule);
|
|
PREP(handler);
|
|
PREP(handleTaskRewards);
|
|
PREP(heartBeat);
|
|
PREP(hostage);
|
|
PREP(hostageModule);
|
|
PREP(hostagesModule);
|
|
PREP(hvt);
|
|
PREP(hvtModule);
|
|
PREP(makeCargo);
|
|
PREP(makeHostage);
|
|
PREP(makeHVT);
|
|
PREP(makeIED);
|
|
PREP(makeObject);
|
|
PREP(makeShooter);
|
|
PREP(makeTarget);
|
|
PREP(missionManager);
|
|
PREP(protectedModule);
|
|
PREP(shootersModule);
|
|
PREP(spawnEnemyWave); |