Compare commits

...

3 Commits

3 changed files with 158 additions and 157 deletions

View File

@@ -14,6 +14,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Added various framework utitily functions - Added various framework utitily functions
- Added ability for mission maker to allow spawning of resupply boxes from arsenal boxes - Added ability for mission maker to allow spawning of resupply boxes from arsenal boxes
- Added CBA settings for resupply box spawning - Added CBA settings for resupply box spawning
- Added additional vehicle flags
- Addded Zeus module to fill vehicle ace cargo inventory with tracks/tires
### Changed ### Changed

View File

@@ -95,7 +95,9 @@ class Params
// CfgFunctions // CfgFunctions
class CfgFunctions {
#include "framework\CfgFunctions.hpp" #include "framework\CfgFunctions.hpp"
};

View File

@@ -1,7 +1,5 @@
#include "script_mod.hpp" #include "script_mod.hpp"
class CfgFunctions {
class DOUBLES(PREFIX,init) { class DOUBLES(PREFIX,init) {
class functions { class functions {
file = "framework\init\functions"; file = "framework\init\functions";
@@ -177,4 +175,3 @@ class CfgFunctions {
class addZenModules {}; class addZenModules {};
}; };
}; };
};