1 2 3 4 5 6 7 8 9 10 11
#ifndef STICK_HPP #define STICK_HPP #include "Item.hpp" class Stick : public Item { }; #endif