mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
31 lines
714 B
C++
31 lines
714 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
units[] = {};
|
|
weapons[] = {};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = { "ace_common" };
|
|
author[] = {"KoffeinFlummi", "esteldunedain"};
|
|
authorUrl = "https://github.com/KoffeinFlummi";
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "CfgEventHandlers.hpp"
|
|
|
|
#include "CfgSounds.hpp"
|
|
|
|
#include "CfgVehicles.hpp"
|
|
|
|
#include "CfgWeapons.hpp"
|
|
|
|
#include "RscTitles.hpp"
|
|
|
|
class ACE_newEvents {
|
|
cameraViewChanged = "ace_cameraViewChanged";
|
|
firedPlayerNonLocal = "ace_firedPlayerNonLocal";
|
|
firedPlayer = "ace_firedPlayer";
|
|
playerInventoryChanged = "ace_playerInventoryChanged";
|
|
};
|