/*! * @file proto_class.h * @brief Interface for Worldentities that can picku up powerups. */ #ifndef _EXTENDABLE_H #define _EXTENDABLE_H #include "base_object.h" // FORWARD DECLARATION class PowerUp; //! A class for ... class Extendable : virtual public BaseObject { public: // Extendable(); // virtual ~Extendable(); virtual bool pickup(PowerUp* powerUp) { return false; } private: }; #endif /* _EXTENDABLE_H */