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