Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 2, 2005, 3:00:24 PM (20 years ago)
Author:
manuel
Message:

declared extendable

File:
1 copied

Legend:

Unmodified
Added
Removed
  • branches/powerups/src/world_entities/extendable.h

    r5849 r5871  
    44*/
    55
    6 #ifndef _PROTO_CLASS_H
    7 #define _PROTO_CLASS_H
    8 
    9 #include "base_object.h"
     6#ifndef _EXTENDABLE_H
     7#define _EXTENDABLE_H
    108
    119// FORWARD DECLARATION
     
    1412
    1513//! A class for ...
    16 class ProtoClass : public BaseObject {
     14class Extendable : public BaseObject {
    1715
    1816 public:
    19   ProtoClass();
    20   virtual ~ProtoClass();
    21 
     17//   Extendable();
     18//   virtual ~Extendable();
     19  virtual bool pickup(PowerUp* powerUp) { return false; }
    2220
    2321 private:
     
    2523};
    2624
    27 #endif /* _PROTO_CLASS_H */
     25#endif /* _EXTENDABLE_H */
Note: See TracChangeset for help on using the changeset viewer.