Changeset 5871 in orxonox.OLD for branches/powerups/src/world_entities/extendable.h
- Timestamp:
- Dec 2, 2005, 3:00:24 PM (20 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/powerups/src/world_entities/extendable.h
r5849 r5871 4 4 */ 5 5 6 #ifndef _PROTO_CLASS_H 7 #define _PROTO_CLASS_H 8 9 #include "base_object.h" 6 #ifndef _EXTENDABLE_H 7 #define _EXTENDABLE_H 10 8 11 9 // FORWARD DECLARATION … … 14 12 15 13 //! A class for ... 16 class ProtoClass: public BaseObject {14 class Extendable : public BaseObject { 17 15 18 16 public: 19 ProtoClass();20 virtual ~ProtoClass();21 17 // Extendable(); 18 // virtual ~Extendable(); 19 virtual bool pickup(PowerUp* powerUp) { return false; } 22 20 23 21 private: … … 25 23 }; 26 24 27 #endif /* _ PROTO_CLASS_H */25 #endif /* _EXTENDABLE_H */
Note: See TracChangeset
for help on using the changeset viewer.