mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
28 lines
678 B
C++
28 lines
678 B
C++
|
#include "script_component.hpp"
|
||
|
|
||
|
class CfgPatches {
|
||
|
class ADDON {
|
||
|
name = COMPONENT_NAME;
|
||
|
units[] = {};
|
||
|
weapons[] = {"ace_xm157_prototype"};
|
||
|
requiredVersion = REQUIRED_VERSION;
|
||
|
requiredAddons[] = {"ace_advanced_ballistics", "ace_scopes"};
|
||
|
author = ECSTRING(common,ACETeam);
|
||
|
authors[] = {"PabstMirror"};
|
||
|
url = ECSTRING(main,URL);
|
||
|
VERSION_CONFIG;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
#include "CfgEventHandlers.hpp"
|
||
|
#include "CfgSounds.hpp"
|
||
|
#include "CfgWeapons.hpp"
|
||
|
#include "RscInGameUI.hpp"
|
||
|
|
||
|
class asdg_OpticRail;
|
||
|
class asdg_OpticRail1913: asdg_OpticRail {
|
||
|
class compatibleItems {
|
||
|
ace_xm157_prototype = 1;
|
||
|
};
|
||
|
};
|