ACE3/addons/microdagr/config.cpp

27 lines
593 B
C++
Raw Normal View History

2015-03-09 15:46:59 +00:00
#include "script_component.hpp"
class CfgPatches {
class ADDON {
units[] = {};
2015-03-25 17:23:01 +00:00
weapons[] = {"ACE_microDAGR"};
2015-03-09 15:46:59 +00:00
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_common"};
author[] = {"PabstMirror"};
2015-03-09 18:52:15 +00:00
authorUrl = "https://github.com/PabstMirror/";
2015-03-09 15:46:59 +00:00
VERSION_CONFIG;
};
};
#include "CfgEventHandlers.hpp"
#include "CfgWeapons.hpp"
2015-03-09 18:52:15 +00:00
#include "CfgVehicles.hpp"
2015-03-09 15:46:59 +00:00
#include "gui.hpp"
2015-03-09 18:52:15 +00:00
class ACE_Settings {
class GVAR(MapDataAvailable) {
value = 2;
typeName = "SCALAR";
2015-04-14 19:43:19 +00:00
isClientSettable = 0;
2015-03-09 18:52:15 +00:00
};
};