#ifndef BUFF_H #define BUFF_H #include "../item.qh" CLASS(Buff, GameItem) METHOD(Buff, show, void(entity this)) void Buff_show(entity this) { print("%s\n", "Buff"); } ENDCLASS(Buff) #endif