]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/items/item/buff.qh
Cleanup
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / items / item / buff.qh
1 #ifndef BUFF_H
2 #define BUFF_H
3 #include "../item.qh"
4 CLASS(Buff, GameItem)
5     METHOD(Buff, show, void(entity this))
6     void Buff_show(entity this) { print("%s\n", "Buff"); }
7 ENDCLASS(Buff)
8 #endif