mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
38 lines
621 B
C++
38 lines
621 B
C++
class CfgMagazines
|
|
{
|
|
//External references
|
|
class CA_Magazine;
|
|
class HandGrenade;
|
|
|
|
|
|
|
|
//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"
|
|
}; |