mirror of
https://github.com/indig0fox/Arma3-AttendanceTracker.git/
synced 2025-12-08 09:51:47 -06:00
27 lines
569 B
C++
27 lines
569 B
C++
class CfgPatches {
|
|
class AttendanceTracker {
|
|
units[] = {};
|
|
weapons[] = {};
|
|
requiredVersion = 2.10;
|
|
requiredAddons[] = {};
|
|
author[] = {"IndigoFox"};
|
|
authorUrl = "http://example.com";
|
|
};
|
|
};
|
|
|
|
class CfgFunctions {
|
|
class attendanceTracker {
|
|
class functions {
|
|
file = "\AttendanceTracker\functions";
|
|
class postInit {postInit = 1;};
|
|
class connectDB {};
|
|
class eventHandlers {};
|
|
class callbackHandler {postInit = 1;};
|
|
class log {};
|
|
class logMissionEvent {};
|
|
class logServerEvent {};
|
|
class timestamp {};
|
|
class getHash {};
|
|
};
|
|
};
|
|
}; |