grad-drop
v0.0.6
Published
* [CBA_A3](https://github.com/CBATeam/CBA_A3) * [CUP Terrains Core (or Complete)](http://www.armaholic.com/page.php?id=30044)
Readme
GRAD Drop
Dependencies
Installation
Manually
- Create a folder in your mission root folder and name it
modules. Then create one inside there and call itgrad-drop. - Download the contents of this repository ( there's a download link at the side ) and put it into the directory you just created.
- Append the following lines of code to the
description.ext:
class CfgFunctions {
#include "modules\grad-drop\cfgFunctions.hpp"
};
class CfgSounds {
sounds[] = {};
#include "modules\grad-drop\cfgSounds.hpp"
};Via npm
for details about what npm is and how to use it, look it up on npmjs.com
- Install package
grad-drop:npm install --save grad-drop - Prepend your mission's
description.extwith#define MODULES_DIRECTORY node_modules - Append the following lines of code to the
description.ext:
class CfgFunctions {
#include "node_modules\grad-drop\cfgFunctions.hpp"
};
class CfgSounds {
sounds[] = {};
#include "node_modules\grad-drop\cfgSounds.hpp"
};