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
Line 
1/*!
2 * @file proto_class.h
3 * @brief Interface for Worldentities that can picku up powerups.
4*/
5
6#ifndef _EXTENDABLE_H
7#define _EXTENDABLE_H
8
9// FORWARD DECLARATION
10
11
12
13//! A class for ...
14class Extendable : public BaseObject {
15
16 public:
17//   Extendable();
18//   virtual ~Extendable();
19  virtual bool pickup(PowerUp* powerUp) { return false; }
20
21 private:
22
23};
24
25#endif /* _EXTENDABLE_H */
Note: See TracBrowser for help on using the repository browser.