mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-13 16:03:31 +00:00
19 lines
387 B
C++
19 lines
387 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
name = COMPONENT_NAME;
|
|
units[] = {};
|
|
weapons[] = {};
|
|
requiredAddons[] = {
|
|
"cba_main",
|
|
"ace_main",
|
|
"armatak_main"
|
|
};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
author = PROJECT_AUTHOR;
|
|
url = "https://github.com/valmojr/armatak";
|
|
};
|
|
};
|
|
|
|
#include "CfgEventHandlers.hpp" |