mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
50ab2aa904
Fix load order problems (init.sqf can be before postInit)
30 lines
659 B
Plaintext
30 lines
659 B
Plaintext
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
PREP(appMarkKeypadEntry);
|
|
PREP(appMenuButtonConnectRangefinder);
|
|
PREP(appSettingsLBClick);
|
|
PREP(appWaypointsButtonDeleteWP);
|
|
PREP(appWaypointsButtonSetWP);
|
|
PREP(canShow);
|
|
PREP(deviceAddWaypoint);
|
|
PREP(deviceDeleteWaypoint);
|
|
PREP(deviceGetWaypoints);
|
|
PREP(dialogClosedEH);
|
|
PREP(mapButtonDownEH);
|
|
PREP(mapDoubleTapEH);
|
|
PREP(mapOnDrawEH);
|
|
PREP(modeMapButtons);
|
|
PREP(moduleMapFill);
|
|
PREP(openDisplay);
|
|
PREP(recieveRangefinderData);
|
|
PREP(saveCurrentAndSetNewMode);
|
|
PREP(showApplicationPage);
|
|
PREP(updateDisplay);
|
|
|
|
//Functions that are called for each draw of the map:
|
|
GVAR(miniMapDrawHandlers) = [];
|
|
|
|
ADDON = true;
|