-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathconfig.cpp
63 lines (54 loc) · 1.43 KB
/
config.cpp
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#define MAJOR 0
#define MINOR 84
#define REVISION 5
#define VERSION MAJOR.MINOR.REVISION
#define VERSION_AR MAJOR,MINOR,REVISION
#define QUOTE(var1) #var1
class CfgPatches {
class BRM_FRAMEWORK {
units[] = {};
weapons[] = {};
requiredVersion = 1;
requiredAddons[] = {};
author = "BromA";
versionDesc = "Broma Framework MK 4 APEX";
version = VERSION;
versionStr = QUOTE(VERSION);
versionAr[] = {VERSION_AR};
};
};
class CfgSettings {
class CBA {
class Versioning {
class BRM_FRAMEWORK {
main_addon = "BRM_FRAMEWORK";
};
};
};
};
class CfgFunctions {
class BRM_FMK {
#include "\broma_framework\loadouts\functions.cpp"
};
};
class BRM_FMK {
#include "\broma_framework\engine\configs\Endings.hpp"
#include "\broma_framework\loadouts\configs\Voices.hpp"
#include "\broma_framework\loadouts\configs\Faces.hpp"
#include "\broma_framework\loadouts\configs\Names.hpp"
#include "\broma_framework\loadouts\configs\Factions.hpp"
#include "\broma_framework\loadouts\configs\Structures.hpp"
};
#include "CfgNotifications.hpp"
#include "CfgDebriefing.hpp"
#include "CfgTaskDescriptions.hpp"
class Extended_DisplayLoad_EventHandlers {
class RscDisplayEGSpectator {
BRM_FRAMEWORK = "['BRM_FMK_DisplayLoad_EGSpectator', _this] call CBA_fnc_localEvent;";
};
};
class Extended_DisplayUnload_EventHandlers {
class RscDisplayEGSpectator {
BRM_FRAMEWORK = "['BRM_FMK_DisplayUnload_EGSpectator', _this] call CBA_fnc_localEvent;";
};
};