added initial version of server addon to handle TCP socket into the TAK Server

This commit is contained in:
Valmo Trindade
2025-05-16 00:38:42 -03:00
parent 31f7b5178e
commit eda786931d
7 changed files with 60 additions and 0 deletions

19
addons/server/config.cpp Normal file
View File

@@ -0,0 +1,19 @@
#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"