]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/items/all.qc
Remove uses of LAMBDA(), not handled well by uncrustify
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / items / all.qc
1 #ifndef ITEMS_ALL_C
2 #define ITEMS_ALL_C
3 #include "all.qh"
4
5 #include "all.inc"
6
7 void Dump_Items()
8 {
9     FOREACH(Items, true, ITEM_HANDLE(Show, it));
10 }
11
12 string Item_Model(string item_mdl)
13 {
14     string output = strcat("models/items/", item_mdl);
15 #ifdef SVQC
16     MUTATOR_CALLHOOK(ItemModel, item_mdl, output);
17     output = item_model_output;
18 #endif
19     return output;
20 }
21
22 #endif