mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
28c41e0518
- ace_cargoAddedByClass -> ace_cargoAdded - ace_addCargoByClass -> ace_addCargo
31 lines
800 B
C++
31 lines
800 B
C++
#include "script_component.hpp"
|
|
|
|
class CfgPatches {
|
|
class ADDON {
|
|
name = COMPONENT_NAME;
|
|
units[] = {};
|
|
weapons[] = {};
|
|
requiredVersion = REQUIRED_VERSION;
|
|
requiredAddons[] = {"ace_interaction"};
|
|
author = ECSTRING(common,ACETeam);
|
|
authors[] = {"commy2", "Glowbal"};
|
|
url = ECSTRING(main,URL);
|
|
VERSION_CONFIG;
|
|
};
|
|
};
|
|
|
|
#include "ACE_Settings.hpp"
|
|
#include "CfgEventHandlers.hpp"
|
|
#include "CfgVehicles.hpp"
|
|
#include "menu.hpp"
|
|
|
|
class ACE_newEvents {
|
|
LoadCargo = "ace_loadCargo";
|
|
cargoUnloaded = "ace_cargoUnloaded";
|
|
cargoLoaded = "ace_cargoLoaded";
|
|
AddCargoByClass = "ace_addCargo";
|
|
ServerUnloadCargo = QGVAR(serverUnload);
|
|
UnloadCargo = "ace_unloadCargo";
|
|
cargoAddedByClass = "ace_cargoAdded";
|
|
};
|