This commit is contained in:
Nou 2015-01-11 16:04:22 -08:00
commit cdc1f7d3d7
7 changed files with 733 additions and 620 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,22 +0,0 @@
#include "script_component.hpp"
class CfgPatches {
class ADDON {
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"Extended_EventHandlers", "CBA_MAIN"};
VERSION_CONFIG;
};
};
class CfgMods {
class ACE3 {
dir = "@ACE3";
picture = "";
action = "http://www.unitedoperations.net";
hideName = 0;
hidePicture = 0;
name = "UnitedOperations";
};
};

View File

@ -1,12 +0,0 @@
#define COMPONENT main
#include "\x\ace\Addons\main\script_mod.hpp"
#ifdef DEBUG_ENABLED_MAIN
#define DEBUG_MODE_FULL
#endif
#ifdef DEBUG_SETTINGS_MAIN
#define DEBUG_SETTINGS DEBUG_SETTINGS_MAIN
#endif
#include "script_macros.hpp"

View File

@ -1 +0,0 @@
#include "\x\cba\addons\main\script_macros_common.hpp"

View File

@ -1,19 +0,0 @@
// COMPONENT should be defined in the script_component.hpp and included BEFORE this hpp
#define MAINPREFIX x
#define PREFIX ace
//--BUILDPREFIX
#include "\x\ace\Addons\main\script_version.hpp"
//--ENDBUILDPREFIX
#define VERSION MAJOR.MINOR.PATCHLVL.BUILD
#define VERSION_AR MAJOR,MINOR,PATCHLVL,BUILD
#define VERSION_PLUGIN MAJOR.MINOR.PATCHLVL.BUILD
// MINIMAL required version for the Mod. Components can specify others..
#define REQUIRED_VERSION 1.0
#ifndef VERSION_CONFIG
#define VERSION_CONFIG version = VERSION; versionStr = QUOTE(VERSION); versionAr[] = {VERSION_AR}
#endif

View File

@ -1,5 +0,0 @@
#define MAJOR 1
#define MINOR 0
#define PATCHLVL 0
#define BUILD 1
#define BUILDDATE 2015-01-10 21:26:00.000000

View File

@ -1,2 +0,0 @@
version = QUOTE(VERSION);
text = QUOTE(UOMODS VERSION);