mirror of
https://github.com/indig0fox/Arma3-AttendanceTracker.git/
synced 2025-12-08 09:51:47 -06:00
add hemtt support, major refactor
- no longer supports server events - can now more easily build using hemtt - extension vastly improved in both structure and functionality - tested on listen server - includes schema change
This commit is contained in:
36
addons/main/config.cpp
Normal file
36
addons/main/config.cpp
Normal file
@@ -0,0 +1,36 @@
|
||||
#include "script_mod.hpp"
|
||||
|
||||
class CfgPatches {
|
||||
class AttendanceTracker {
|
||||
units[] = {};
|
||||
weapons[] = {};
|
||||
requiredVersion = 2.10;
|
||||
requiredAddons[] = {
|
||||
"cba_main",
|
||||
"cba_xeh",
|
||||
"cba_settings"
|
||||
};
|
||||
VERSION_CONFIG;
|
||||
author[] = {"IndigoFox"};
|
||||
authorUrl = "https://github.com/indig0fox";
|
||||
};
|
||||
};
|
||||
|
||||
class CfgFunctions {
|
||||
class attendanceTracker {
|
||||
class functions {
|
||||
file = "x\addons\attendancetracker\main\functions";
|
||||
class postInit {postInit = 1;};
|
||||
class callbackHandler {postInit = 1;};
|
||||
class getMissionHash {};
|
||||
class getMissionInfo {};
|
||||
class getSettings {};
|
||||
class getWorldInfo {};
|
||||
class log {};
|
||||
class missionLoaded {};
|
||||
class onPlayerConnected {};
|
||||
class timestamp {};
|
||||
class writePlayer {};
|
||||
};
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user