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