Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/powerups/src/world_entities/extendable.h @ 5874

Last change on this file since 5874 was 5874, checked in by manuel, 18 years ago

some documentation

File size: 385 bytes
RevLine 
[4838]1/*!
2 * @file proto_class.h
[5874]3 * @brief Interface for Worldentities that can picku up powerups.
[3245]4*/
[1853]5
[5871]6#ifndef _EXTENDABLE_H
7#define _EXTENDABLE_H
[1853]8
[4838]9// FORWARD DECLARATION
[3543]10
11
[2036]12
[3955]13//! A class for ...
[5871]14class Extendable : public BaseObject {
[1853]15
[1904]16 public:
[5871]17//   Extendable();
18//   virtual ~Extendable();
19  virtual bool pickup(PowerUp* powerUp) { return false; }
[1853]20
[3245]21 private:
22
[1853]23};
24
[5871]25#endif /* _EXTENDABLE_H */
Note: See TracBrowser for help on using the repository browser.