This repository has been archived by the owner on Sep 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.cpp
162 lines (160 loc) · 4.01 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
class CfgPatches {
class WorldFlagPatches
{
units[] = {};
weapons[] = {};
requiredAddons[] = {};
version = "1.0.0";
author[]= {"Hannibal"};
};
};
class CfgUnitInsignia
{
class CA_c
{
displayName = "CA - Canada";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\CA_c_co.paa";
textureVehicle = "";
};
class CA_o
{
displayName = "CA - Canada - olive";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\CA_o_co.paa";
textureVehicle = "";
};
class CA_t
{
displayName = "CA - Canada - tan";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\CA_t_co.paa";
textureVehicle = "";
};
class GB_c
{
displayName = "GB - Great Britain";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\GB_c_co.paa";
textureVehicle = "";
};
class GB_o
{
displayName = "GB - Great Britain - olive";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\GB_o_co.paa";
textureVehicle = "";
};
class GB_t
{
displayName = "GB - Great Britain - tan";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\GB_t_co.paa";
textureVehicle = "";
};
class PL_c
{
displayName = "PL - Poland";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\PL_c_co.paa";
textureVehicle = "";
};
class PL_ct
{
displayName = "PL - Poland - text";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\PL_ct_co.paa";
textureVehicle = "";
};
class PL_o
{
displayName = "PL - Poland - olive";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\PL_o_co.paa";
textureVehicle = "";
};
class PL_ot
{
displayName = "PL - Poland - olive text";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\PL_ot_co.paa";
textureVehicle = "";
};
class PL_t
{
displayName = "PL - Poland - tan";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\PL_t_co.paa";
textureVehicle = "";
};
class PL_tt
{
displayName = "PL - Poland - tan text";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\PL_tt_co.paa";
textureVehicle = "";
};
class UA_c
{
displayName = "UA - Ukraine";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\UA_c_co.paa";
textureVehicle = "";
};
class UA_ct
{
displayName = "UA - Ukraine - text";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\UA_ct_co.paa";
textureVehicle = "";
};
class UA_o
{
displayName = "UA - Ukraine - olive";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\UA_o_co.paa";
textureVehicle = "";
};
class UA_ot
{
displayName = "UA - Ukraine - olive text";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\UA_ot_co.paa";
textureVehicle = "";
};
class UA_t
{
displayName = "UA - Ukraine - tan";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\UA_t_co.paa";
textureVehicle = "";
};
class UA_tt
{
displayName = "UA - Ukraine - tan text";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\UA_tt_co.paa";
textureVehicle = "";
};
class US_c
{
displayName = "US - United States of America";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\US_c_co.paa";
textureVehicle = "";
};
class US_o
{
displayName = "US - United States of America - olive";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\US_o_co.paa";
textureVehicle = "";
};
class US_t
{
displayName = "US - United States of America - tan";
author = "Hannibal";
texture = "\7Cav_Auxillary\@Cav_Aux\addons\patches\patches\icon\US_t_co.paa";
textureVehicle = "";
};
};