mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
29 lines
748 B
C++
29 lines
748 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
units[] = {};
|
|
weapons[] = {};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_common"};
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"TaoSensai", "KoffeinFlummi"};
|
|
url = "http://ace3mod.com";
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
// 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.
|
|
//////////////////////////////////////////////////////
|
|
|
|
#include "CfgMagazines.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|