Added required files for new module

This commit is contained in:
SAM 2015-05-07 22:41:44 +02:00
parent 8e3e38f91d
commit c2bb6386af
7 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1 @@
z\ace\addons\blank

View File

@ -0,0 +1,6 @@
class Extended_PreInit_EventHandlers {
class ADDON {
init = QUOTE(call COMPILE_FILE(XEH_preInit));
};
};

View File

@ -0,0 +1,7 @@
#include "script_component.hpp"
ADDON = false;
PREP(empty);
ADDON = true;

View File

@ -0,0 +1,15 @@
#include "script_component.hpp"
class CfgPatches {
class ADDON {
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {"ace_common"};
author[] = {""};
authorUrl = "";
VERSION_CONFIG;
};
};
#include "CfgEventHandlers.hpp"

View File

@ -0,0 +1,3 @@
#include "script_component.hpp"
diag_log text format["This is here as an example!!!"];

View File

@ -0,0 +1 @@
#include "\z\ace\addons\viewdistance\script_component.hpp"

View File

@ -0,0 +1,12 @@
#define COMPONENT viewdistance
#include "\z\ace\addons\main\script_mod.hpp"
#ifdef DEBUG_ENABLED_VIEWDISTANCE
#define DEBUG_MODE_FULL
#endif
#ifdef DEBUG_SETTINGS_VIEWDISTANCE
#define DEBUG_SETTINGS DEBUG_SETTINGS_VIEWDISTANCE
#endif
#include "\z\ace\addons\main\script_macros.hpp"