mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
27 lines
592 B
C++
27 lines
592 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
units[] = {};
|
|
weapons[] = {"ACE_microDAGR"};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_common"};
|
|
author[] = {"PabstMirror"};
|
|
authorUrl = "https://github.com/PabstMirror/";
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "CfgWeapons.hpp"
|
|
#include "CfgVehicles.hpp"
|
|
#include "gui.hpp"
|
|
|
|
class ACE_Settings {
|
|
class GVAR(MapDataAvailable) {
|
|
value = 2;
|
|
typeName = "SCALAR";
|
|
isClientSetable = 0;
|
|
};
|
|
};
|