Changeset 6269 in orxonox.OLD for branches/powerups/src/world_entities/extendable.h
- Timestamp:
- Dec 23, 2005, 2:42:54 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/powerups/src/world_entities/extendable.h
r6113 r6269 17 17 class Extendable : virtual public BaseObject { 18 18 19 public: 20 // Extendable(); 21 // virtual ~Extendable(); 19 public: 20 // virtual ~Extendable(); 22 21 virtual bool pickup(PowerUp* powerUp) { return false; }; 23 22 24 private: 23 protected: 24 Extendable() { this->setClassID(CL_EXTENDABLE, "Extendable"); }; 25 26 private: 25 27 26 28 };
Note: See TracChangeset
for help on using the changeset viewer.