mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30 lines
833 B
C++
30 lines
833 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
name = COMPONENT_NAME;
|
|
units[] = {"ACE_Wheel", "ACE_Track"};
|
|
weapons[] = {};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_interaction"};
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"commy2", "Glowbal", "Jonpas"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "ACE_Repair.hpp"
|
|
#include "ACE_Settings.hpp"
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "CfgActions.hpp"
|
|
#include "CfgVehicles.hpp"
|
|
#include "CfgEden.hpp"
|
|
|
|
class ACE_newEvents {
|
|
setWheelHitPointDamage = QGVAR(setWheelHitPointDamage);
|
|
setVehicleHitPointDamage = QGVAR(setVehicleHitPointDamage);
|
|
setVehicleDamage = QGVAR(setVehicleDamage);
|
|
AddCargoByClass = "ace_addCargoByClass";
|
|
};
|