-
Notifications
You must be signed in to change notification settings - Fork 149
/
Copy pathCfgFunctions.hpp
43 lines (41 loc) · 1.17 KB
/
CfgFunctions.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
class CfgFunctions {
class CBA {
class XEH {
PATHTO_FNC(isScheduled);
PATHTO_FNC(isRecompileEnabled);
PATHTO_FNC(addClassEventHandler);
PATHTO_FNC(init);
PATHTO_FNC(initEvents);
PATHTO_FNC(supportMonitor);
PATHTO_FNC(compileEventHandlers);
PATHTO_FNC(compileFunction);
class preStart {
preStart = 1;
file = QPATHTOF(fnc_preStart.sqf);
};
class preInit {
preInit = 1;
file = QPATHTOF(fnc_preInit.sqf);
};
class postInit {
postInit = 1;
file = QPATHTOF(fnc_postInit.sqf);
};
};
};
class A3 {
class GUI {
class initDisplay {
file = QPATHTOF(fnc_initDisplay.inc.sqf);
};
};
class Misc {
class startLoadingScreen {
file = QPATHTOF(fnc_startLoadingScreen.inc.sqf);
};
class endLoadingScreen {
file = QPATHTOF(fnc_endLoadingScreen.inc.sqf);
};
};
};
};