mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
81 lines
2.4 KiB
C++
81 lines
2.4 KiB
C++
|
class ACE_BFT {
|
||
|
class Side {
|
||
|
class WEST {
|
||
|
encryptionKeys[] = {""};
|
||
|
};
|
||
|
class EAST {
|
||
|
encryptionKeys[] = {""};
|
||
|
};
|
||
|
class IND {
|
||
|
encryptionKeys[] = {""};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
class Types {
|
||
|
class Inf {
|
||
|
displayName = "";
|
||
|
iconPath = "\A3\ui_f\data\map\markers\nato\b_inf.paa";
|
||
|
};
|
||
|
class Motorized {
|
||
|
displayName = "";
|
||
|
iconPath = "\A3\ui_f\data\map\markers\nato\b_motor_inf.paa";
|
||
|
};
|
||
|
class Plane {
|
||
|
displayName = "";
|
||
|
iconPath = "\A3\ui_f\data\map\markers\nato\b_plane.paa";
|
||
|
};
|
||
|
class Helicopter {
|
||
|
displayName = "";
|
||
|
iconPath = "\A3\ui_f\data\map\markers\nato\b_air.paa";
|
||
|
};
|
||
|
class Armor {
|
||
|
displayName = "";
|
||
|
iconPath = "\A3\ui_f\data\map\markers\nato\b_armor.paa";
|
||
|
};
|
||
|
class Naval {
|
||
|
displayName = "";
|
||
|
iconPath = "\A3\ui_f\data\map\markers\nato\b_naval.paa";
|
||
|
};
|
||
|
class HQ {
|
||
|
displayName = "";
|
||
|
iconPath = "\A3\ui_f\data\map\markers\nato\b_hq.paa";
|
||
|
};
|
||
|
class Medical {
|
||
|
displayName = "";
|
||
|
iconPath = "\A3\ui_f\data\map\markers\nato\b_med.paa";
|
||
|
};
|
||
|
class Maintenance {
|
||
|
displayName = "";
|
||
|
iconPath = "\A3\ui_f\data\map\markers\nato\b_maint.paa";
|
||
|
};
|
||
|
class Artillery {
|
||
|
displayName = "";
|
||
|
iconPath = "\A3\ui_f\data\map\markers\nato\b_art.paa";
|
||
|
};
|
||
|
class Mortar {
|
||
|
displayName = "";
|
||
|
iconPath = "\A3\ui_f\data\map\markers\nato\b_mortar.paa";
|
||
|
};
|
||
|
class Service {
|
||
|
displayName = "";
|
||
|
iconPath = "\A3\ui_f\data\map\markers\nato\b_service.paa";
|
||
|
};
|
||
|
class Recon {
|
||
|
displayName = "";
|
||
|
iconPath = "\A3\ui_f\data\map\markers\nato\b_recon.paa";
|
||
|
};
|
||
|
class Mechanized {
|
||
|
displayName = "";
|
||
|
iconPath = "\A3\ui_f\data\map\markers\nato\b_mech_inf.paa";
|
||
|
};
|
||
|
class UAV {
|
||
|
displayName = "";
|
||
|
iconPath = "\A3\ui_f\data\map\markers\nato\b_uav.paa";
|
||
|
};
|
||
|
class Installation {
|
||
|
displayName = "";
|
||
|
iconPath = "\A3\ui_f\data\map\markers\nato\b_installation.paa";
|
||
|
};
|
||
|
};
|
||
|
};
|