mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
740869e859
Cleanup & complete realistic names
149 lines
3.7 KiB
C++
149 lines
3.7 KiB
C++
// Attachments
|
|
class ItemCore;
|
|
class acc_flashlight: ItemCore {
|
|
displayName = CSTRING(flashlight_Name);
|
|
};
|
|
|
|
class optic_MRD: ItemCore {
|
|
displayName = CSTRING(optic_mrd_Name);
|
|
};
|
|
class optic_MRD_black: optic_MRD {
|
|
displayName = CSTRING(optic_mrd_black_Name);
|
|
};
|
|
|
|
class optic_Hamr: ItemCore {
|
|
displayName = CSTRING(optic_hamr);
|
|
};
|
|
class optic_Hamr_khk_F: optic_Hamr {
|
|
displayName = CSTRING(optic_hamr_khk);
|
|
};
|
|
|
|
class optic_Arco: ItemCore {
|
|
displayName = CSTRING(optic_arco);
|
|
};
|
|
class optic_Arco_blk_F: optic_Arco {
|
|
displayName = CSTRING(optic_arco_blk);
|
|
};
|
|
class optic_Arco_ghex_F: optic_Arco {
|
|
displayName = CSTRING(optic_arco_ghex);
|
|
};
|
|
class optic_Arco_lush_F: optic_Arco {
|
|
displayName = CSTRING(optic_arco_lush);
|
|
};
|
|
class optic_Arco_arid_F: optic_Arco {
|
|
displayName = CSTRING(optic_arco_arid);
|
|
};
|
|
class optic_Arco_AK_blk_F: optic_Arco_blk_F {
|
|
displayName = CSTRING(optic_arco_ak_blk);
|
|
};
|
|
class optic_Arco_AK_lush_F: optic_Arco_lush_F {
|
|
displayName = CSTRING(optic_arco_ak_lush);
|
|
};
|
|
class optic_Arco_AK_arid_F: optic_Arco_arid_F {
|
|
displayName = CSTRING(optic_arco_ak_arid);
|
|
};
|
|
|
|
class optic_ERCO_blk_f: optic_Arco {
|
|
displayName = CSTRING(optic_erco_blk);
|
|
};
|
|
class optic_ERCO_khk_f: optic_ERCO_blk_f {
|
|
displayName = CSTRING(optic_erco_khk);
|
|
};
|
|
class optic_ERCO_snd_f: optic_ERCO_blk_f {
|
|
displayName = CSTRING(optic_erco_snd);
|
|
};
|
|
|
|
class optic_LRPS: ItemCore {
|
|
displayName = CSTRING(optic_lrps);
|
|
};
|
|
class optic_LRPS_ghex_F: optic_LRPS {
|
|
displayName = CSTRING(optic_lrps_ghex);
|
|
};
|
|
class optic_LRPS_tna_F: optic_LRPS {
|
|
displayName = CSTRING(optic_lrps_tna);
|
|
};
|
|
|
|
class optic_AMS_base;
|
|
class optic_AMS: optic_AMS_base {
|
|
displayName = CSTRING(optic_ams);
|
|
};
|
|
class optic_AMS_khk: optic_AMS {
|
|
displayName = CSTRING(optic_ams_khk);
|
|
};
|
|
class optic_AMS_snd: optic_AMS {
|
|
displayName = CSTRING(optic_ams_snd);
|
|
};
|
|
|
|
class optic_KHS_base;
|
|
class optic_KHS_blk: optic_KHS_base {
|
|
displayName = CSTRING(optic_khs_blk);
|
|
};
|
|
class optic_KHS_hex: optic_KHS_blk {
|
|
displayName = CSTRING(optic_khs_hex);
|
|
};
|
|
class optic_KHS_old: ItemCore {
|
|
displayName = CSTRING(optic_khs_old);
|
|
};
|
|
class optic_KHS_tan: optic_KHS_blk {
|
|
displayName = CSTRING(optic_khs_tan);
|
|
};
|
|
|
|
class optic_DMS: ItemCore {
|
|
displayName = CSTRING(optic_dms);
|
|
};
|
|
class optic_DMS_ghex_F: optic_DMS {
|
|
displayName = CSTRING(optic_dms_ghex);
|
|
};
|
|
class optic_DMS_weathered_F: optic_DMS {
|
|
displayName = CSTRING(optic_dms_weathered);
|
|
};
|
|
class optic_DMS_weathered_Kir_F: optic_DMS_weathered_F {
|
|
displayName = CSTRING(optic_dms_weathered_kir);
|
|
};
|
|
|
|
class optic_holosight: ItemCore {
|
|
displayName = CSTRING(optic_holosight);
|
|
};
|
|
class optic_Holosight_blk_F: optic_holosight {
|
|
displayName = CSTRING(optic_holosight_blk);
|
|
};
|
|
class optic_Holosight_khk_F: optic_holosight {
|
|
displayName = CSTRING(optic_holosight_khk);
|
|
};
|
|
class optic_Holosight_lush_F: optic_holosight {
|
|
displayName = CSTRING(optic_holosight_lush);
|
|
};
|
|
class optic_Holosight_arid_F: optic_holosight {
|
|
displayName = CSTRING(optic_holosight_arid);
|
|
};
|
|
class optic_Holosight_smg: ItemCore {
|
|
displayName = CSTRING(optic_holosight_smg);
|
|
};
|
|
class optic_Holosight_smg_blk_F: optic_Holosight_smg {
|
|
displayName = CSTRING(optic_holosight_smg_blk);
|
|
};
|
|
class optic_Holosight_smg_khk_F: optic_Holosight_smg {
|
|
displayName = CSTRING(optic_holosight_smg_khk);
|
|
};
|
|
|
|
class optic_MRCO: ItemCore {
|
|
displayName = CSTRING(optic_MRCO);
|
|
};
|
|
|
|
class optic_Yorris: ItemCore {
|
|
displayName = CSTRING(optic_Yorris);
|
|
};
|
|
|
|
class optic_ACO: ItemCore {
|
|
displayName = CSTRING(optic_ACO);
|
|
};
|
|
class optic_ACO_grn: ItemCore {
|
|
displayName = CSTRING(optic_ACO_grn);
|
|
};
|
|
class optic_ACO_smg: ItemCore {
|
|
displayName = CSTRING(optic_ACO_smg);
|
|
};
|
|
class optic_ACO_grn_smg: ItemCore {
|
|
displayName = CSTRING(optic_ACO_grn_smg);
|
|
};
|