2015-01-17 21:14:56 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
class CfgPatches {
|
2015-01-17 21:14:56 +00:00
|
|
|
class ADDON {
|
|
|
|
units[] = {};
|
|
|
|
weapons[] = {};
|
|
|
|
requiredVersion = REQUIRED_VERSION;
|
|
|
|
requiredAddons[] = {"ace_common"};
|
|
|
|
author[] = {"TaoSensai", "KoffeinFlummi"};
|
|
|
|
authorUrl = "https://github.com/Taosenai/tmr";
|
|
|
|
VERSION_CONFIG;
|
|
|
|
};
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// EVERYTHING BELOW BELONGS TO TAOSENSAI
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////
|
|
|
|
// TMR strings update for weapons and magazines:
|
|
|
|
// 1. Change displayname to match TMR standards.
|
|
|
|
// 3. Add displaynameshort to TMR standards.
|
|
|
|
//////////////////////////////////////////////////////
|
|
|
|
|
2015-01-17 21:14:56 +00:00
|
|
|
#include "CfgMagazines.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-17 21:14:56 +00:00
|
|
|
#include "CfgWeapons.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-17 21:14:56 +00:00
|
|
|
#include "CfgVehicles.hpp"
|