ACE3/addons/optics/config.cpp

42 lines
1.0 KiB
C++
Raw Normal View History

2015-04-03 10:33:12 +00:00
#include "script_component.hpp"
class CfgPatches {
class ADDON {
units[] = {};
2015-04-04 06:51:22 +00:00
weapons[] = {
"ACE_optic_Hamr_2D",
"ACE_optic_Hamr_PIP",
"ACE_optic_Arco_2D",
"ACE_optic_Arco_PIP",
"ACE_optic_MRCO_2D",
2015-04-04 10:06:20 +00:00
//"ACE_optic_MRCO_PIP",
2015-04-04 06:51:22 +00:00
"ACE_optic_SOS_2D",
"ACE_optic_SOS_PIP",
"ACE_optic_LRPS_2D",
"ACE_optic_LRPS_PIP"
//"ACE_optic_DMS"
2015-04-04 06:51:22 +00:00
};
2015-04-03 10:33:12 +00:00
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_common"};
author = ECSTRING(common,ACETeam);
authors[] = {"Taosenai","KoffeinFlummi","commy2"};
url = ECSTRING(main,URL);
2015-04-03 10:33:12 +00:00
VERSION_CONFIG;
};
};
#include "CfgEventHandlers.hpp"
2015-04-03 20:30:29 +00:00
#include "CfgOpticsEffect.hpp"
2015-04-03 10:33:12 +00:00
#include "CfgRscTitles.hpp"
2015-04-04 06:51:22 +00:00
#include "CfgVehicles.hpp"
2015-04-03 20:30:29 +00:00
#include "CfgWeapons.hpp"
2015-08-19 15:11:15 +00:00
#include "CfgJointRails.hpp"
2015-04-04 11:15:27 +00:00
#include "CfgPreloadTextures.hpp"
2016-05-24 13:13:11 +00:00
class ACE_newEvents {
infoDisplayChanged = "ace_infoDisplayChanged";
firedPlayer = "ace_firedPlayer";
2016-05-24 14:06:17 +00:00
};