]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/items/all.qc
Use the new item system for ammo
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / items / all.qc
1 #ifndef ALL_C
2 #define ALL_C
3 #include "all.qh"
4
5 #include "all.inc"
6
7 void ItemTest()
8 {
9     ITEMS_FOREACH(it != NULL, LAMBDA({
10         print(strcat(etos(it), "\n"));
11         ITEM_SEND(Default, it);
12     }));
13 }
14
15 #endif