mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
5e67de4d66
Marked locations where Scheduled Delay Execution will probably need to be used.
51 lines
686 B
Plaintext
51 lines
686 B
Plaintext
/*
|
|
Name: XEH_preInit.sqf
|
|
|
|
Author(s):
|
|
Garth de Wet (LH)
|
|
|
|
Description:
|
|
Prepares the functions
|
|
|
|
Parameters:
|
|
None
|
|
|
|
Returns:
|
|
None
|
|
|
|
Example:
|
|
None
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
PREP(addClacker);
|
|
PREP(canDefuse);
|
|
PREP(defuseExplosive);
|
|
PREP(detonateExplosive);
|
|
|
|
PREP(handleScrollWheel);
|
|
|
|
PREP(hasExplosives);
|
|
PREP(hasPlacedExplosives);
|
|
|
|
PREP(getDetonators);
|
|
PREP(getPlacedExplosives);
|
|
|
|
PREP(openDetonateUI);
|
|
PREP(openPlaceUI);
|
|
PREP(openTransmitterUI);
|
|
PREP(openTimerSetUI);
|
|
PREP(openTriggerSelectionUI);
|
|
|
|
PREP(place_Approve);
|
|
PREP(place_Cancel);
|
|
|
|
PREP(placeExplosive);
|
|
|
|
PREP(selectTrigger);
|
|
PREP(setupExplosive);
|
|
PREP(setPosition);
|
|
PREP(startDefuse);
|
|
PREP(startTimer);
|
|
PREP(triggerType);
|