Changeset 6282 in orxonox.OLD for trunk/src/world_entities/extendable.h
- Timestamp:
- Dec 25, 2005, 4:21:48 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/extendable.h
r6113 r6282 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.