#ifndef ITEMS_ALL_H #define ITEMS_ALL_H #include "item.qh" REGISTRY(Items, 24) REGISTER_REGISTRY(RegisterItems) /** If you register a new item, make sure to add it to all.inc */ #define REGISTER_ITEM(id, class) REGISTER(RegisterItems, ITEM, Items, Items_COUNT, id, m_id, NEW(class)) void Dump_Items(); #ifndef MENUQC string Item_Model(string item_mdl); #endif #endif #include "inventory.qh"