mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-13 17:33:30 +00:00
24 lines
481 B
C++
24 lines
481 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
name = COMPONENT_NAME;
|
|
units[] = {
|
|
QGVAR(coreModule),
|
|
QGVAR(coreModuleCurator)
|
|
};
|
|
weapons[] = {};
|
|
requiredAddons[] = {
|
|
"cba_main",
|
|
"ace_main",
|
|
"armatak_main"
|
|
};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
author = PROJECT_AUTHOR;
|
|
url = "https://github.com/valmojr/armatak";
|
|
};
|
|
};
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "dialog.hpp"
|
|
#include "CfgVehicles.hpp" |