ACE3/addons/respawn/config.cpp

27 lines
774 B
C++
Raw Normal View History

2015-01-12 09:20:50 +00:00
#include "script_component.hpp"
2015-01-12 09:07:03 +00:00
class CfgPatches {
2015-01-12 09:20:50 +00:00
class ADDON {
2015-01-12 09:07:03 +00:00
units[] = {};
2015-01-12 09:20:50 +00:00
weapons[] = {"ACE_Rallypoint_West", "ACE_Rallypoint_East", "ACE_Rallypoint_Independent", "ACE_RallypointExit_West", "ACE_RallypointExit_East", "ACE_RallypointExit_Independent"};
2015-01-12 09:07:03 +00:00
requiredVersion = 0.60;
2015-01-12 09:20:50 +00:00
requiredAddons[] = {"ace_core"};
version = QUOTE(VERSION);
versionStr = QUOTE(VERSION);
versionAr[] = {VERSION_AR};
2015-01-12 09:07:03 +00:00
author[] = {"bux578", "commy2"};
authorUrl = "https://github.com/bux578/";
};
};
2015-01-12 09:20:50 +00:00
#include "CfgEventHandlers.hpp"
#include "CfgAddons.hpp"
#include "CfgVehicleClasses.hpp"
#include "CfgVehicles.hpp"
class ACE_Parameters_Boolean {
// Boolean Parameters (0/1)
GVAR(SavePreDeathGear) = 0;
GVAR(RemoveDeadBodiesDisonncected) = 1;
};