mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
021679208b
Separating ACE_Settings.hpp from config.cpp
20 lines
476 B
C++
20 lines
476 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"
|
|
#include "ACE_Settings.hpp"
|