DMS_Exile/@ExileServer/addons/a3_dms/config.cpp

24 lines
372 B
C++
Raw Normal View History

2015-08-26 13:12:14 +00:00
class CfgPatches {
class A3_dms {
units[] = {};
weapons[] = {};
2015-08-29 10:16:39 +00:00
a3_DMS_version = 2.0;
2015-08-26 13:12:14 +00:00
requiredVersion = 1.36;
requiredAddons[] = {"exile_client","exile_server_config"};
2015-08-26 13:12:14 +00:00
};
};
class CfgFunctions {
class dms {
class main {
file = "\x\addons\dms";
class DMS_preInit
{
preInit = 1;
};
class DMS_postInit {
2015-08-26 13:12:14 +00:00
postInit = 1;
};
};
};
2015-08-29 10:16:39 +00:00
};