mirror of
https://github.com/indig0fox/Arma3-AttendanceTracker.git/
synced 2025-12-08 09:51:47 -06:00
- using a3go 0.3.2, no longer relies on ext callback for anything except RPT logging and waiting DB connect at postinit - tested and functional
33 lines
605 B
C++
33 lines
605 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
units[] = {};
|
|
weapons[] = {};
|
|
requiredVersion = 2.10;
|
|
requiredAddons[] = {
|
|
"cba_main",
|
|
"cba_xeh",
|
|
"cba_settings"
|
|
};
|
|
VERSION_CONFIG;
|
|
author[] = {"IndigoFox"};
|
|
authorUrl = "https://github.com/indig0fox";
|
|
};
|
|
};
|
|
|
|
class CfgFunctions {
|
|
class ADDON {
|
|
class functions {
|
|
class postInit {
|
|
file = QPATHTOF(DOUBLES(fnc,postInit).sqf);
|
|
postInit = 1;
|
|
};
|
|
PATHTO_FNC(getMissionInfo);
|
|
PATHTO_FNC(getWorldInfo);
|
|
PATHTO_FNC(log);
|
|
PATHTO_FNC(missionLoaded);
|
|
PATHTO_FNC(onPlayerConnected);
|
|
};
|
|
};
|
|
}; |