mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
69 lines
1.4 KiB
C++
69 lines
1.4 KiB
C++
class CfgMagazines
|
|
{
|
|
//External references
|
|
class CA_Magazine;
|
|
class HandGrenade;
|
|
class TimeBomb;
|
|
class CA_LauncherMagazine;
|
|
|
|
|
|
//Weapon magazines
|
|
#include "Magazines\Magazines.hpp"
|
|
|
|
//Trash
|
|
#include "Trash\Trash.hpp"
|
|
|
|
//Vehicle parts
|
|
#include "VehicleParts.hpp"
|
|
|
|
//Chemlight and Roadflare
|
|
#include "Throwable.hpp"
|
|
|
|
//Clothing
|
|
#include "Clothing\Clothing.hpp"
|
|
|
|
//Medical
|
|
#include "Medical\Medical.hpp"
|
|
|
|
//Miscellaneous
|
|
#include "Items\Items.hpp"
|
|
|
|
//Attachments
|
|
#include "Attachments\Attachments.hpp"
|
|
|
|
//Crafting materials
|
|
#include "Crafting\Crafting.hpp"
|
|
|
|
//Consumables: food, drinks etc.
|
|
#include "Consumables\Consumables.hpp"
|
|
|
|
//EPOCH ADDITIONS
|
|
|
|
#include "VehicleAmmo.hpp"
|
|
// Gems
|
|
#include "DZE\Gems.hpp"
|
|
#include "DZE\Ores.hpp"
|
|
// Items
|
|
#include "DZE\Items.hpp"
|
|
#include "DZE\Bulk.hpp"
|
|
// Currency
|
|
#include "DZE\Currency\Briefcase.hpp"
|
|
#include "DZE\Currency\GoldBar.hpp"
|
|
#include "DZE\Currency\SilverBar.hpp"
|
|
#include "DZE\Currency\CopperBar.hpp"
|
|
//#include "DZE\Currency\BronzeBar.hpp" //The Bronze Bar has no model
|
|
#include "DZE\Currency\AluminumBar.hpp"
|
|
#include "DZE\Currency\TinBar.hpp"
|
|
|
|
#include "DZE\ItemWaterbottle.hpp"
|
|
#include "DZE\PlasticWaterbottle.hpp"
|
|
#include "Planting.hpp"
|
|
|
|
// Building Stuff
|
|
#include "DZE\ModularBuilding.hpp"
|
|
#include "DZE\Misc.hpp"
|
|
|
|
// Consumables
|
|
#include "DZE\Food.hpp"
|
|
#include "DZE\ItemSoda.hpp"
|
|
}; |