# Installation

In the main config of your mod, you only need to add this mod as an addon.

```cpp
class CfgPatches
{
 class YourModName
 {
  units[] = {};
  weapons[] = {};
  requiredVersion = 0.1;
  requiredAddons[] = {"DFramework","DZ_Scripts"};
 };
};
```
